Author

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

hero member
Activity: 630
Merit: 731
Bitcoin g33k
Even though the 120 key was found, I'm still interested in finding it since it hasn't been published. If anyone still has kangaroo's workfiles for 120 puzzle with DP of 30 bits and above, I would be grateful if you share them.

let's say the finder of puzzle 120 will reveal the private key. In what way does it help you proceeding with finding #66 or #130 or ... ?
member
Activity: 110
Merit: 61
Even though the 120 key was found, I'm still interested in finding it since it hasn't been published. If anyone still has kangaroo's workfiles for 120 puzzle with DP of 30 bits and above, I would be grateful if you share them.
member
Activity: 499
Merit: 38
I'm currently making a random seed code using the HMAC-SHA512 function.

80% that is electrum
https://github.com/spesmilo/electrum/blob/e81f4bdcd11a072e7c4f38fb1c7eec19c2f7e1a8/electrum/storage.py#L164
He may have even changed the source code.  Grin
copper member
Activity: 1330
Merit: 899
🖤😏
Hi.
Share in a personal what kind of tricks you do and how they work?
This is one of my tricks.🤣  you just jump hoping for the best.
member
Activity: 93
Merit: 16
Creator use master keys or child keys? BIP-32 or BIP-39 format? Who can know?

If I can say anything it'd be for the author of this puzzle to bless me beyond my own imagination
I have tried my best but I am still not going to give up either. you can search or do a lookup of my wallet address. I have definitely invested over $30k in the puzzle 66 alone throughout the whole random scan and my wallet address is 1h7EsfXpgCLftpU4vucjkCbX1Wktop8GM, you can do your search from the private key scanner or 66 bits puzzle
I spend so much resources there but no luck
I am running my search lowkey now but I am almost being drained but still not giving up
A blessing is nothing imaginable or unimaginable but nothing is impossible for God to do.
I just pray for the ability to be able to keep  up as it is so much fun
It is likely that he used a BIP-39 wallet. Because BIP 0039 was created on 2013-09-10, and it is more durable. Uses 2048 rounds of HMAC-SHA512 hashing from SEED. This means that an attack on SEED is not possible. A short phrase of unknown length out of a possible 2048 words. Maybe she's not on the BIP-39 wirdlist. We will never know. I'm currently making a random seed code using the HMAC-SHA512 function. That's why I asked Smiley I've already split a 512-bit key into 2 256-bit keys... For now I'll continue this...
newbie
Activity: 49
Merit: 0
the equation in my head can solve.....

It's called imagination.  Grin Grin Grin
Not any more, as I just tested a few tricks, it works. Note that I'm not forcing anyone to believe me, I don't know who to trust that's it, therefore my only option is Satoshi/author of this challenge.

I have been called delusional, scammer, liar etc,  without these name callings I wouldn't be here right now. It's the fuel for my engine.


Hi.
Share in a personal what kind of tricks you do and how they work?
member
Activity: 499
Merit: 38
If you believe in "luck" and "chance", you should buy lottery tickets to try your luck.

If you don't buy a ticket, you can't win. It's the same with Puzzle if you do nothing.. Grin
member
Activity: 275
Merit: 20
the right steps towerds the goal
"1h7EsfXpgCLftpU4vucjkCbX1Wktop8GM"

This wallet '1BGvwggxfCaHGykKrVXX7fk8GYaLQpeixA' is also in the same way , don't worry, you are not alone on this journey. The only difference is that your car has completely out of fuel, while my car can still go a little further. Undecided
jr. member
Activity: 75
Merit: 5




I've been receiving many DMs about this script, and I'm not sure what people find interesting in it. I made this script purely for fun.
I want to emphasize that it should not be used for any malicious purposes or to mislead anyone. Its sole purpose is for education, to show how a single seed can create an entire key. Here's the example script.

Code:
import random
from bit import *
import random

List = ["13zb1hQbWVsc2S7ZTZnP2G4undNNpdh5so","1BY8GQbnueYofwSuFAT3USAhGjPrkxDdW9",
        "1MVDYgVaSN6iKKEsbzRUAYFrYJadLYZvvZ","19vkiEajfhuZ8bs8Zu2jgmC6oqZbWqhxhG"]
count = 0
found = 0
for i in range (100000000):
    seed = random.getrandbits(128)
    seed_value = int(seed)
    random.seed(seed_value)
    seed = str(seed_value)
    a = random.randrange(2**65,2**66)
    key = Key.from_int(a)
    addr66 = key.address
    hex66 = "%00x" % a
    b = random.randrange(2**66,2**67)
    key = Key.from_int(b)
    addr67 = key.address
    hex67 = "%00x" % b
    c = random.randrange(2**67,2**68)
    key = Key.from_int(c)
    addr68 = key.address
    hex68 = "%00x" % c
    d = random.randrange(2**68,2**69)
    key = Key.from_int(d)
    addr69 = key.address
    hex69 = "%00x" % d
    count+=1
    print('\n\n=============================== Derived From OneSeed =============================\n\nSeeed : {}\nCount : {}\nFound : {}\nAddress 60 : 1Kn5h2qpgw9mWE5jKpk8PP4qvvJ1QVy8su | Private Key : fc07a1825367bbe\nAddress 61 : 1AVJKwzs9AskraJLGHAZPiaZcrpDr1U6AB | Private Key : 13c96a3742f64906\nAddress 62 : 1Me6EfpwZK5kQziBwBfvLiHjaPGxCKLoJi | Private Key : 363d541eb611abee\nAddress 63 : 1NpYjtLira16LfGbGwZJ5JbDPh3ai9bjf4 | Private Key : 7cce5efdaccf6808\nAddress 64 : 16jY7qLJnxb7CHZyqBP8qca9d51gAjyXQN | Private Key : f7051f27b09112d4\nAddress 65 : 18ZMbwUFLMHoZBbfpCjUJQTCMCbktshgpe | Private Key : 1a838b13505b26867\nAddress 66 : {} | Private Key : {}\nAddress 67 : {} | Private Key : {}\nAddress 68 : {} | Private Key : {}\nAddress 69 : {} | Private Key : {}\nAddress 70 : 19YZECXj3SxEZMoUeJ1yiPsw8xANe7M7QR | Private Key : 349b84b6431a6c4ef1'.format(seed, count, found, '13zb1hQbWVsc2S7ZTZnP2G4undNNpdh5so', hex66, '1BY8GQbnueYofwSuFAT3USAhGjPrkxDdW9', hex67, '1MVDYgVaSN6iKKEsbzRUAYFrYJadLYZvvZ', hex68, '19vkiEajfhuZ8bs8Zu2jgmC6oqZbWqhxhG', hex69), end='\r')
   
    if addr66 in List or addr67 in List or addr68 in List or addr69 in List:
        print('\n\n================================ Found ================================\n\n')
        g=open(u"Found.txt","a")
        g.write("From one seed:         " +seed+'\n')
        g.write("\n" +addr66)
        g.write("\n" +addr67)
        g.write("\n" +addr68)
        g.write("\n" +addr69)
        g.write("\n"+seed + "\n"+ "\n")
        g.close()
        found += 1
    break

And yes, with great politeness and simplicity... I have allowed the newbie to DM me just to ensure that the creator doesn't drop any hints accidentally  Grin This doesn't mean that everyone should keep messaging, except the creator Cheesy, He can message me, 24x7 Smiley

i APPRECIATE YOUR NEWBIES, BUT CAN THEY ALSO FUND THIS WALLET "1h7EsfXpgCLftpU4vucjkCbX1Wktop8GM" FOR ABILITY TO CONTINUE HAVING THE SAME FUN EVERYONE ELSE IS HAVING?

NOTHING IS TOO SMALL FROM YOUR NEWBIES. I JUST WANT TO PAY THE ELECTRICAL BILLS ACCRUED AND ALSO BE ABLE TO KEEP THESE MACHINES RUNNING. THANK YOU IN ADVANCE TO YOUR NEWBIES
member
Activity: 275
Merit: 20
the right steps towerds the goal




I've been receiving many DMs about this script, and I'm not sure what people find interesting in it. I made this script purely for fun.
I want to emphasize that it should not be used for any malicious purposes or to mislead anyone. Its sole purpose is for education, to show how a single seed can create an entire key. Here's the example script.

Code:
import random
from bit import *
import random

List = ["13zb1hQbWVsc2S7ZTZnP2G4undNNpdh5so","1BY8GQbnueYofwSuFAT3USAhGjPrkxDdW9",
        "1MVDYgVaSN6iKKEsbzRUAYFrYJadLYZvvZ","19vkiEajfhuZ8bs8Zu2jgmC6oqZbWqhxhG"]
count = 0
found = 0
for i in range (100000000):
    seed = random.getrandbits(128)
    seed_value = int(seed)
    random.seed(seed_value)
    seed = str(seed_value)
    a = random.randrange(2**65,2**66)
    key = Key.from_int(a)
    addr66 = key.address
    hex66 = "%00x" % a
    b = random.randrange(2**66,2**67)
    key = Key.from_int(b)
    addr67 = key.address
    hex67 = "%00x" % b
    c = random.randrange(2**67,2**68)
    key = Key.from_int(c)
    addr68 = key.address
    hex68 = "%00x" % c
    d = random.randrange(2**68,2**69)
    key = Key.from_int(d)
    addr69 = key.address
    hex69 = "%00x" % d
    count+=1
    print('\n\n=============================== Derived From OneSeed =============================\n\nSeeed : {}\nCount : {}\nFound : {}\nAddress 60 : 1Kn5h2qpgw9mWE5jKpk8PP4qvvJ1QVy8su | Private Key : fc07a1825367bbe\nAddress 61 : 1AVJKwzs9AskraJLGHAZPiaZcrpDr1U6AB | Private Key : 13c96a3742f64906\nAddress 62 : 1Me6EfpwZK5kQziBwBfvLiHjaPGxCKLoJi | Private Key : 363d541eb611abee\nAddress 63 : 1NpYjtLira16LfGbGwZJ5JbDPh3ai9bjf4 | Private Key : 7cce5efdaccf6808\nAddress 64 : 16jY7qLJnxb7CHZyqBP8qca9d51gAjyXQN | Private Key : f7051f27b09112d4\nAddress 65 : 18ZMbwUFLMHoZBbfpCjUJQTCMCbktshgpe | Private Key : 1a838b13505b26867\nAddress 66 : {} | Private Key : {}\nAddress 67 : {} | Private Key : {}\nAddress 68 : {} | Private Key : {}\nAddress 69 : {} | Private Key : {}\nAddress 70 : 19YZECXj3SxEZMoUeJ1yiPsw8xANe7M7QR | Private Key : 349b84b6431a6c4ef1'.format(seed, count, found, '13zb1hQbWVsc2S7ZTZnP2G4undNNpdh5so', hex66, '1BY8GQbnueYofwSuFAT3USAhGjPrkxDdW9', hex67, '1MVDYgVaSN6iKKEsbzRUAYFrYJadLYZvvZ', hex68, '19vkiEajfhuZ8bs8Zu2jgmC6oqZbWqhxhG', hex69), end='\r')
   
    if addr66 in List or addr67 in List or addr68 in List or addr69 in List:
        print('\n\n================================ Found ================================\n\n')
        g=open(u"Found.txt","a")
        g.write("From one seed:         " +seed+'\n')
        g.write("\n" +addr66)
        g.write("\n" +addr67)
        g.write("\n" +addr68)
        g.write("\n" +addr69)
        g.write("\n"+seed + "\n"+ "\n")
        g.close()
        found += 1
    break

And yes, with great politeness and simplicity... I have allowed the newbie to DM me just to ensure that the creator doesn't drop any hints accidentally  Grin This doesn't mean that everyone should keep messaging, except the creator Cheesy, He can message me, 24x7 Smiley
jr. member
Activity: 75
Merit: 5
nothing is impossible for God to do.
Only one thing is also impossible for God to do, suicide. Because energy can not be destroyed or created, if he is not the purest kind of energy then what?


Anyhow, your mistake is searching randomly/sequentially, doesn't matter what method you use, 66 bit is very large, you should have at least consult an expert before spending money, or just do a simple calculation like this :

Your speed rate = 5 billion keys per second, how many seconds is 1 year = 31536000 * 5b/2^66 = 467 years to search 66 bit.  If you believe in "luck" and "chance", you should buy lottery tickets to try your luck.

Anyone trying to brute force #66, please stop and first calculate the profit and cost.
WELL Hope, it is the quintessential human delusion, simultaneously the source of our greatest strength, and our greatest weakness.
copper member
Activity: 1330
Merit: 899
🖤😏
nothing is impossible for God to do.
Only one thing is also impossible for God to do, suicide. Because energy can not be destroyed or created, if he is not the purest kind of energy then what?


Anyhow, your mistake is searching randomly/sequentially, doesn't matter what method you use, 66 bit is very large, you should have at least consult an expert before spending money, or just do a simple calculation like this :

Your speed rate = 5 billion keys per second, how many seconds is 1 year = 31536000 * 5b/2^66 = 467 years to search 66 bit.  If you believe in "luck" and "chance", you should buy lottery tickets to try your luck.

Anyone trying to brute force #66, please stop and first calculate the profit and cost.
jr. member
Activity: 75
Merit: 5
Creator use master keys or child keys? BIP-32 or BIP-39 format? Who can know?

If I can say anything it'd be for the author of this puzzle to bless me beyond my own imagination
I have tried my best but I am still not going to give up either. you can search or do a lookup of my wallet address. I have definitely invested over $30k in the puzzle 66 alone throughout the whole random scan and my wallet address is 1h7EsfXpgCLftpU4vucjkCbX1Wktop8GM, you can do your search from the private key scanner or 66 bits puzzle
I spend so much resources there but no luck
I am running my search lowkey now but I am almost being drained but still not giving up
A blessing is nothing imaginable or unimaginable but nothing is impossible for God to do.
I just pray for the ability to be able to keep  up as it is so much fun
member
Activity: 93
Merit: 16
Creator use master keys or child keys? BIP-32 or BIP-39 format? Who can know?
copper member
Activity: 1330
Merit: 899
🖤😏
the equation in my head can solve.....

It's called imagination.  Grin Grin Grin
Not any more, as I just tested a few tricks, it works. Note that I'm not forcing anyone to believe me, I don't know who to trust that's it, therefore my only option is Satoshi/author of this challenge.

I have been called delusional, scammer, liar etc,  without these name callings I wouldn't be here right now. It's the fuel for my engine.
member
Activity: 499
Merit: 38
the equation in my head can solve.....

It's called imagination.  Grin Grin Grin
copper member
Activity: 1330
Merit: 899
🖤😏
what a pathetic call, rarely laughed so, just ridiculous - you made my day Grin Grin Grin

You are right, indeed pathetic, when you can have billions why ask for millions right? Well I like to earn honestly, plus I'm not greedy. But I'm glad you are not whining and laughing, laugh keeps us healthy, keep at it.😉

I need more people like, your comments gives me more incentive.
hero member
Activity: 630
Merit: 731
Bitcoin g33k
Without a joke, I might have found a definitive solution to solve DLP, I'm not sure how I can implement an algorithm fast and precise to solve a key, but the equation in my head can solve DLP.

@Satoshi/ author/ designer of this challenge, I am willing to work for 3 years exclusively on this particular subject for a salary of $50m, which I would take $3m upfront and if after 3 years we reached the final solution I will take the remaining $47m, and if we couldn't find that solution, I keep the 3m. 

I'm not 100% sure, I only discovered this new equation yesterday, but since all my calculations happen in my head, when I think about it I see the solution, I just need someone who I can trust and a professional programmer.

I will buy an apartment in another city to be alone and undistracted, then I will share the address and my ID.
Obviously I accept no other sponsor/offer. If you are interested send dust to my digaran address with the same address you charged these puzzles, I will then encrypt my dedicated email address with your public key and post it here.

Disclaimer, I do not guarantee any satisfactorily results, this is just my term of business.
Please note, I will continue working on this regardless, and God willing when I manage to solve a puzzle key, I will not share the method.


My dig add is on profile.
Fun to know :
There is a lot of controversy around my reputation, at one point in time, I "suggested" to charge $50 "bucks" from each garbage poster for the cost of their wrong doings. on behalf of forum, not for myself of course, now after 5 years, I'm asking for $50m from the #1 man of Bitcoin. Who could have thought that, right? Lol.

Anyways, I will do my best to keep a decentralized system such as Bitcoin alive and safe, for a better world, even if I'm only 1 man, it still counts.😉

what a pathetic call, rarely laughed so, just ridiculous - you made my day Grin Grin Grin
copper member
Activity: 1330
Merit: 899
🖤😏
Without a joke, I might have found a definitive solution to solve DLP, I'm not sure how I can implement an algorithm fast and precise to solve a key, but the equation in my head can solve DLP.

@Satoshi/ author/ designer of this challenge, I am willing to work for 1 years exclusively on this particular subject for a salary of $200m, which I would take $20m upfront and if after 1 year we reached the final solution I will take the remaining $180m, and if we couldn't find that solution, I keep the 20m.  

I'm not 100% sure, I only discovered this new equation yesterday, but since all my calculations happen in my head, when I think about it I see the solution, I just need someone who I can trust and a professional programmer.

I will buy an apartment in another city to be alone and undistracted, then I will share the address and my ID.
Obviously I accept no other sponsor/offer. If you are interested send dust to my digaran address with the same address you charged these puzzles, I will then encrypt my dedicated email address with your public key and post it here.

Disclaimer, I do not guarantee any satisfactorily results, this is just my term of business.
Please note, I will continue working on this regardless, and God willing when I manage to solve a puzzle key, I will not share the method.


My dig add is on profile.
Fun to know :
There is a lot of controversy around my reputation, at one point in time, I "suggested" to charge $50 "bucks" from each garbage poster for the cost of their wrong doings. on behalf of forum, not for myself of course, now after 5 years, I'm asking for $200m from the #1 man of Bitcoin. Who could have thought that, right? Lol.

Anyways, I will do my best to keep a decentralized system such as Bitcoin alive and safe, for a better world, even if I'm only 1 man, it still counts.😉
member
Activity: 499
Merit: 38
I just found a new hobby, using btckeygen.com as a messenger medium.😂

I didn't move away much intellectually from this hobby either. In terms of solving the Puzzle 66.
I can print the solved ones and joke here. But that won't help us. 😂
Jump to: