Pages:
Author

Topic: Bitcoin puzzle transaction ~32 BTC prize to who solves it - page 2. (Read 238789 times)

?
Activity: -
Merit: -
Priv (WIF): p2pkh:L58eFd3HB1Z2HQwbECpqz6HKsyhNRq4z1iRuj88UbPmsvPSHgMxG
Priv (WIF): p2pkh:L58eFd3HB1Z2HQwbECpqz6HKsyhNRq4z1iPCWbNyGXCyscJbUpyg
Add1: 1ABRrqZmhhNNosHztvjKrgwgoCyrWJXQ1z
Add2: 1ABRrqZmhhNRFHjBoaMtBbVBKwfSuMPsYy
ec1794984c8ad36757a5de3ac0167bb5add8b35065432b4cd7 d3e4e66f7e51fa
ec1794984c8ad36757a5de3ac0167bb5add8b35065432b4cb7 48bda972ba1081
1BY8GQbnueYofwSuFAT3USAhGjPrkxDdW9
1BY8GQbnueYebq5d6CE1wDfbdAWWy33ZyW
00000000000000000000000000000000000000000000000754xxxxxxxxxxxxxx
000000000000000000000000000000000000000000000007545bf10859946eca
Good luck, BTC donation:13gLHZJYcCJVSCoSuWbAFiYPU3X7kv47iH
?
Activity: -
Merit: -
Hi
If find key how can convert to provitekey and how import to wallet?
copy/paste key here: https://privatekeys.pw/calc

press:  Priv>WIFc

Import private key: KwDiBf89QgGbjEhKnhXJuH7Lrcixxxxxxxxxxxxxxxxxxxxxxxxxxx

Name of wallet ?



Using online tools is same as posting key here!
Stolen at the moment.
agree
Use another place outside and make silence about that, and after that transfer quickly to your personal wallet.
?
Activity: -
Merit: -
Hi
If find key how can convert to provitekey and how import to wallet?
copy/paste key here: https://privatekeys.pw/calc

press:  Priv>WIFc

Import private key: KwDiBf89QgGbjEhKnhXJuH7Lrcixxxxxxxxxxxxxxxxxxxxxxxxxxx

Name of wallet ?



Using online tools is same as posting key here!
Stolen at the moment.
member
Activity: 165
Merit: 26
Server in cloud, with 12 GPUs of RTX 4090, is making 90 giga hashes per second with Retired Coder Kangaroo.

Maybe it will hit the pvk.

Yeah, you only need to let them run for the next 55 years.

I will make public a solver that does at least 10.5 Gk/s on RTX 4090 by the end of this year. I believe I can make it reach 11 Gk/s by then. Combined with symmetry and 3-kang method, it will be at least as fast as RC's solver, per total, if not faster.

Also in a few weeks we'll have RTX 5090 available, looking at the specs (clock speed, SM count) I think we'll see 20 GK/s / GPU next year.
jr. member
Activity: 56
Merit: 2
Hi
If find key how can convert to provitekey and how import to wallet?
copy/paste key here: https://privatekeys.pw/calc

press:  Priv>WIFc

Import private key: KwDiBf89QgGbjEhKnhXJuH7Lrcixxxxxxxxxxxxxxxxxxxxxxxxxxx

Name of wallet ?

?
Activity: -
Merit: -
Hi
If find key how can convert to provitekey and how import to wallet?

Code:
import hashlib # SHA-256 hash function

# 1. start with a 32-byte hexadecimal private key
privatekey = "00000000000000000000000000000000000000000000000" # example, do not use

# 2. add prefix (80 = mainet, ef = testnet)
data = "80" + privatekey

# 3. add compression byte (optional)
data = data + "01"

# 4. add checksum (hash256 the prefix+data+checksum, then take the first 4 bytes)
hash1 = hashlib.sha256(bytes.fromhex(data)).digest() # convert hex string to raw bytes before hashing
hash2 = hashlib.sha256(hash1).hexdigest() # return result as hex string
checksum = hash2[0:8] # checksum is the first 4 bytes
data = data + checksum # add checksum to the end of the data

# 5. set base58 characters
characters = ['1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J', 'K', 'L', 'M', 'N', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']

# 6. convert hex data to integer so we can convert it to base58
i = int(data, 16)

# 7. create a buffer for holding the base58 string
base58 = ''

# 8. keep dividing the integer by 58 and taking the remainder to work out each base58 character
while i > 0:
  i, remainder = divmod(i, 58) # divide and get the remainder
  base58 = characters[remainder] + base58 # use the remainder to get the character, and add it to the start of the string

# note: during normal base58 encoding you convert leading 00 bytes in hex to 1s in base58, but leading zero bytes will not be present when creating a wif private key so we're skipping that step here

# 9. show result (wif private key)
print(base58)
full member
Activity: 297
Merit: 133
Server in cloud, with 12 GPUs of RTX 4090, is making 90 giga hashes per second with Retired Coder Kangaroo.

Maybe it will hit the pvk.
member
Activity: 348
Merit: 34
can you teach me
If you found key
Read first last 30 pages, before make transaction
It could be hijacked as soon as you will made tx, bot will catch your key and take all funds
You will got nothing, becare full
?
Activity: -
Merit: -
can you teach me
just serch for how to convert hex key to wif format and then use electrum
?
Activity: -
Merit: -
can you teach me
newbie
Activity: 7
Merit: 0
Hi
If find key how can convert to provitekey and how import to wallet?

Just use the Electrum Bitcoin Wallet software, it is very easy
?
Activity: -
Merit: -
Hi
If find key how can convert to provitekey and how import to wallet?
hero member
Activity: 630
Merit: 731
Bitcoin g33k
member
Activity: 873
Merit: 22
$$P2P BTC BRUTE.JOIN NOW ! https://uclck.me/SQPJk
jr. member
Activity: 47
Merit: 12
gmaxwell creator of 1000 BTC puzzl + Pinapple fund
Congratulations to winner of #135
member
Activity: 348
Merit: 34
Hello to the large community interested in "Bitcoin Puzzle"

Like you, I have been participating in the "Bitcoin Puzzle" challenge for many years, hoping to solve one of them...

I wanted to ask experienced and professional friends to answer this concern of less experienced friends...
If someone can find the private key of one of the puzzles (whose publickkey is unknown), what should they do so that these rumored bots cannot steal them or something bad happens...

https://www.youtube.com/watch?v=4bmLWq_4048
https://www.youtube.com/watch?v=Ux9thCQQdcI

Thank you in advance to all our dear friends
Your question were answered by many users in previous 20 pages post, kindly read them, hope u already read, as you stated you connected with puzzle long time, just write now, upon you find some privkey,
In my view lot of users found that key too, but all waiting to see some solution including running their bot too, , as if other execute tx, they will try to catch
?
Activity: -
Merit: -
Hello to the large community interested in "Bitcoin Puzzle"

Like you, I have been participating in the "Bitcoin Puzzle" challenge for many years, hoping to solve one of them...

I wanted to ask experienced and professional friends to answer this concern of less experienced friends...
If someone can find the private key of one of the puzzles (whose publickkey is unknown), what should they do so that these rumored bots cannot steal them or something bad happens...

https://www.youtube.com/watch?v=4bmLWq_4048
https://www.youtube.com/watch?v=Ux9thCQQdcI

Thank you in advance to all our dear friends
newbie
Activity: 55
Merit: 0

Olum you dont even make sense if you have nothing to attribute why bother talking. its a mini puzzle for 130 see the keyword ? puzzle 130 ?


What language do you speak?

Is this the subject of 130 Mini Puzzles?
I said nicely that you wrote in the wrong place. I didn't say you were STUPID.
?
Activity: -
Merit: -
@RetiredCoder I want to admit that unfortunately I did not win mini game #130, I just followed your explanations and found the key #130 0x33e7665705359f04f28b88cf897c603c9

Yes missed out on mini 130 but learned something new heh.

Although someone clarify this for me (Base64) :   IIONt3uYHbMh+vUnqDBGHP2gGu1Q2Fw0WnsKj05eT9P8KI2kGgPniiPirCd5IeLRnRdxeiehDxxsyn/VujUaX8o= 
                                                      (Base64)  :  IIONt3uYHbMh+vUnqDBGHP2gGu1Q2Fw0WnsKj05eT9M=        is from priv key 20838db77b981db321faf527a830461cfda01aed50d85c345a7b0a8f4e5e4fd3   

First 32 bytes are "r" value ?


Friends, I think you wrote in the wrong place.

RetiredCoder is not a topic he opened or a place for his competition.

Now go to his topic and write what you want to write.

Otherwise, I will have to warn the Moderators.
For advertising another user.

Olum you dont even make sense if you have nothing to attribute why bother talking. its a mini puzzle for 130 see the keyword ? puzzle 130 ?
newbie
Activity: 55
Merit: 0
@RetiredCoder I want to admit that unfortunately I did not win mini game #130, I just followed your explanations and found the key #130 0x33e7665705359f04f28b88cf897c603c9

Yes missed out on mini 130 but learned something new heh.

Although someone clarify this for me (Base64) :   IIONt3uYHbMh+vUnqDBGHP2gGu1Q2Fw0WnsKj05eT9P8KI2kGgPniiPirCd5IeLRnRdxeiehDxxsyn/VujUaX8o= 
                                                      (Base64)  :  IIONt3uYHbMh+vUnqDBGHP2gGu1Q2Fw0WnsKj05eT9M=        is from priv key 20838db77b981db321faf527a830461cfda01aed50d85c345a7b0a8f4e5e4fd3   

First 32 bytes are "r" value ?


Friends, I think you wrote in the wrong place.

RetiredCoder is not a topic he opened or a place for his competition.

Now go to his topic and write what you want to write.

Otherwise, I will have to warn the Moderators.
For advertising another user.
Pages:
Jump to: