Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
AbadomRSZ
on 26/02/2025, 23:24:16 UTC
Hi @zahid888. I am curious about this from last year.. I even write some python script to try to understand this, but still didnt get that :

It’s just a few lines of code, bro—why overcomplicate it?  Remember, it’s only for generating the starting point!

Below is full demonstration & Code

Demo:

https://www.talkimg.com/images/2025/02/25/q4fzj.gif

Code:
import random
import subprocess

print('''\n\n      Demo By Zahid888\n
puzzle: 67 730fc235 Possibilities : 13\n
Seed : 2113081982 KHex : 730fc235
Seed : 2179848786 KHex : 730fc235
Seed : 2620256395 KHex : 730fc235
Seed : 3559516538 KHex : 730fc235
Seed : 5559894373 KHex : 730fc235
Seed : 5960477113 KHex : 730fc235
Seed : 6204436682 KHex : 730fc235
Seed : 7016671995 KHex : 730fc235
Seed : 8305603871 KHex : 730fc235
Seed : 8560029709 KHex : 730fc235
Seed : 8633074902 KHex : 730fc235
Seed : 9737552820 KHex : 730fc235
Seed : 9997208084 KHex : 730fc235\n\n''')
while True:
    x = input('seed integer : ')
    seed_value = int(x)
    random.seed(seed_value)
    seed = str(seed_value)
    a = random.randrange(2**30, 2**31)
    random_start = "%00x" % a
    random_range = (random_start+"000000000:"+random_start+"fffffffff")
    print('\nSeed : ' + str(x) + ' KHex : ' + str(random_start) + '\n')
    cmd_command =('BitCrack.exe -b 128 -t 256 -p 512 --keyspace '+random_range+' 1BY8GQbnueYofwSuFAT3USAhGjPrkxDdW9\n')
    subprocess.call(cmd_command, shell=True)

If you do the calculation, puzzle 67 solver only realized a lot of losses,
67 days x 24 hours x several thousand GPUs = more than puzzle 67 price. I think that's why he is not giving any donations right now.

There’s a big difference between someone posting a youtube tutorial in 2005 and someone introducing an idea at the right time and right place, @Wondrig philosopher didn’t just share information—he brought forward a solution when it was needed the most.

Innovations aren't always about inventing something entirely new; sometimes, they’re about applying knowledge when it is truly needed.

Anyway...

Hi @zahid888. I am curious about this from last year.. I even write some python script to try to understand this, but still didnt get that :

Hey Bro, welcome to the black hole! Cheesy Just a friendly reminder—if you win, I definitely expect an appreciation fee... Fair trade, right?  Grin Grin


What script do you use to collide the seeds with the KHex?

Seed : 2113081982 KHex : 730fc235
Seed : 2179848786 KHex : 730fc235
Seed : 2620256395 KHex : 730fc235
Seed : 3559516538 KHex : 730fc235
Seed : 5559894373 KHex : 730fc235
Seed : 5960477113 KHex : 730fc235
Seed : 6204436682 KHex : 730fc235
Seed : 7016671995 KHex : 730fc235
Seed : 8305603871 KHex : 730fc235
Seed : 8560029709 KHex : 730fc235
Seed : 8633074902 KHex : 730fc235
Seed : 9737552820 KHex : 730fc235