CY4NiDE
Member
Offline
Activity: 63
Merit: 14
|
|
July 25, 2024, 12:49:08 AM |
|
I got a bot online too, I'll get away from the PC now and leave it running. Initializing Thief Bot v0...
Monitoring: 166Bitrbfa16oR7DKKSzgdhU4MpVKE4cKb No outgoing transaction yet... [T: 1481]
|
1CY4NiDEaNXfhZ3ndgC2M2sPnrkRhAZhmS
|
|
|
nomachine
Member
Offline
Activity: 488
Merit: 35
|
|
July 25, 2024, 06:02:50 AM Last edit: July 25, 2024, 06:38:33 AM by nomachine |
|
I have managed to get a "Bot" but it's not a bot i have still to manually give the private key because i didn't know how to extract public key once its in the mempool plus i didn't know how to run Keyhunt or kangaroo after getting public key, sooooo i guess i'll have to be awake lol, i'm so bad
I would be happy for any improvement or any opinions if the following script may work?
I would like to ask for a small script that extract public key once it's seen on the mempool. I couldn't do it myself sadly. Could anyone help?
Thank you!
nomachine posted his bot a couple pages back that includes getting public key, running keyhunt, and sweeping funds. Please note that this is not the definitive version. Everyone needs to test and retest to create the final version. However, it serves as an example of what it should look like. The bot PC should have nothing installed except the bot. Anything else can affect the response and screw up. A very good ping and a reliable connection to the mempool are crucial. one of the clues: This code only work for TX already confirmed
while True: logging.info("Running scan...") pubkey = get_exact_public_key_unconfirmed(address) or get_exact_public_key_confirmed(address) if pubkey: logging.info(f"Extracted Public Key: {pubkey}") save_public_key(pubkey)
# Uncomment to run Keyhunt (ensure you have the keyhunt tool and the correct parameters) run_keyhunt(pubkey) I have two functions. One is for unconfirmed and the other for confirmed separately
|
bc1qdwnxr7s08xwelpjy3cc52rrxg63xsmagv50fa8
|
|
|
AlanJohnson
Member
Offline
Activity: 126
Merit: 11
|
|
July 25, 2024, 08:50:34 AM |
|
Is it possible that someone runs a bot waiting for 66bit having fees set to almost all balance just to piss everyone off ? You know the answer
|
|
|
|
ronin445
Newbie
Offline
Activity: 10
Merit: 0
|
|
July 25, 2024, 01:56:08 PM |
|
Is it possible that someone runs a bot waiting for 66bit having fees set to almost all balance just to piss everyone off ? You know the answer you have to stay infront of the computer to make it success.Bot not working %100 automatic when the process gives error. Also for me thats theft even ı loot it with the bot to prove something then I sent it back to the real owner Someone told 11 days ago found the key but who is the real owner of the puzzle 66 ? I believe the first one find it should take the prize..
|
|
|
|
nomachine
Member
Offline
Activity: 488
Merit: 35
|
|
July 25, 2024, 05:07:39 PM Last edit: July 25, 2024, 05:39:49 PM by nomachine |
|
We could see a situation where multiple or thousands of bots continuously send replacement transactions, each one with progressively higher fees, trying to claim the coins for themselves. Since no bot is willing to give up the opportunity for another, this could result in a continuous increase in fees. In the end, almost all of the funds might be eaten up by transaction fees, with most of the money going to the miners. Is it possible that someone runs a bot waiting for 66bit having fees set to almost all balance just to piss everyone off ? You know the answer It doesn't matter whether the first replacement transaction or 24 in a row is 6 BTC; the result will be the same in the end.
|
bc1qdwnxr7s08xwelpjy3cc52rrxg63xsmagv50fa8
|
|
|
Kamoheapohea
Jr. Member
Offline
Activity: 47
Merit: 12
gmaxwell creator of 1000 BTC puzzl + Pinapple fund
|
|
July 25, 2024, 05:44:18 PM |
|
Please someone also try with a CPFP transaction. Maybe this confuses the other bots.
|
gmaxwell is the creator of the 1000 BTC puzzle gmaxwell is the creator of the Pineapple Fund
|
|
|
vjudeu
Copper Member
Legendary
Offline
Activity: 898
Merit: 2237
|
|
July 25, 2024, 05:58:54 PM |
|
It is possible to get the reward in a trustless way. Some examples:
OP_RIPEMD160 <puzzleHash> OP_EQUALVERIFY <solverKey> OP_CHECKSIG OP_SHA256 <revealedHash> OP_EQUALVERIFY <solverKey> OP_CHECKSIG
The first Script can be used to send "I know the key" signal in a trustless way. The second Script can reveal the public key, after the first "I know the key" transaction, but also lock the reward to the solver's key.
Some practical examples, with the smallest key:
OP_DUP OP_HASH160 751e76e8199196d454941c45d1b3a323f1433bd6 OP_EQUALVERIFY OP_CHECKSIG
public key: 0279be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798 first hash: 0f715baf5d4c2ed329785cef29e562f73488c8a2bb9dbc5700b361d54b9b0554 second hash: 751e76e8199196d454941c45d1b3a323f1433bd6
OP_RIPEMD160 751e76e8199196d454941c45d1b3a323f1433bd6 OP_EQUALVERIFY <solverKey> OP_CHECKSIG
Then, the solver can provide: "<signature> 0f715baf5d4c2ed329785cef29e562f73488c8a2bb9dbc5700b361d54b9b0554". Only the solver will know the first hash. And it is still not the public key, so it can be revealed, as a signal, to get it deeply confirmed, and to give the community a choice: "give me those coins now, if you want to see the solution". By scanning the blockchain, it is possible to determine, who was the first person, revealing the first hash on-chain. Also, because scripts are hidden behind hashes, nobody will fake that signal, if P2SH, P2WSH or P2TR will be deeply confirmed first.
If the community will verify that signal, and agree to deposit 6.6 BTC to get the solution, then the next Script can be constructed:
OP_SHA256 0f715baf5d4c2ed329785cef29e562f73488c8a2bb9dbc5700b361d54b9b0554 OP_EQUALVERIFY <solverKey> OP_CHECKSIG
In that case, this particular solver can provide: "<signature> <puzzleKey>". Everyone will then try to grab the key for the puzzle, and clear it. However, the signature will protect the coins for the solver.
|
|
|
|
Akito S. M. Hosana
Jr. Member
Offline
Activity: 91
Merit: 2
|
|
July 25, 2024, 05:59:28 PM |
|
So, all those poor developers spent months honing their skills in Jacobian Coordinates , only to find out their efforts were as useful as a dragon’s breath mint because the unicorn-bot just swooped in and claimed the prize.
And that’s how you end up with an elaborate riddle-solving contest where the only thing you really need is a magical unicorn-bot to do all the work. 🦄🔮
|
|
|
|
kTimesG
Member
Offline
Activity: 266
Merit: 39
|
|
July 25, 2024, 07:33:49 PM |
|
So, all those poor developers spent months honing their skills in Jacobian Coordinates , only to find out their efforts were as useful as a dragon’s breath mint because the unicorn-bot just swooped in and claimed the prize.
And that’s how you end up with an elaborate riddle-solving contest where the only thing you really need is a magical unicorn-bot to do all the work. 🦄🔮
Jacobian coordinates has jack shit to do with puzzle 66 or any other puzzle without an exposed public key. If you know of any program that uses JC to create zillions of random addresses, please let them know that they are doing something very wrong. 66 & friends are more like a SHA/RIPEMD hashing rate competition, onto which the winner of gets pissed on by the Jacobian Coordinates honing skills contest participants. Oh wait, shit, Jacobian Coordinates are totally incompatible with Pollard's DLP methods.
|
|
|
|
Akito S. M. Hosana
Jr. Member
Offline
Activity: 91
Merit: 2
|
|
July 26, 2024, 09:10:47 AM |
|
So, all those poor developers spent months honing their skills in Jacobian Coordinates , only to find out their efforts were as useful as a dragon’s breath mint because the unicorn-bot just swooped in and claimed the prize.
And that’s how you end up with an elaborate riddle-solving contest where the only thing you really need is a magical unicorn-bot to do all the work. 🦄🔮
Jacobian coordinates has jack shit to do with puzzle 66 or any other puzzle without an exposed public key. If you know of any program that uses JC to create zillions of random addresses, please let them know that they are doing something very wrong. 66 & friends are more like a SHA/RIPEMD hashing rate competition, onto which the winner of gets pissed on by the Jacobian Coordinates honing skills contest participants. Oh wait, shit, Jacobian Coordinates are totally incompatible with Pollard's DLP methods. This was a joke. But it does not matter. Here's a another one. No matter how much you earn on puzzle 130, the unicorn-bot will earn more from 66-90 🦄
|
|
|
|
GR Sasa
Member
Offline
Activity: 198
Merit: 14
|
|
July 26, 2024, 11:35:06 AM |
|
I think @WanderingPhilospher forgot us lol...
Hope he's doing ok
|
|
|
|
|
ElonMusk_ia
Newbie
Offline
Activity: 23
Merit: 2
|
|
July 26, 2024, 01:34:25 PM |
|
|
|
|
|
OxSD
Newbie
Offline
Activity: 8
Merit: 0
|
|
July 26, 2024, 02:02:53 PM |
|
I think @WanderingPhilospher forgot us lol...
Hope he's doing ok
He's pretty smart and I think his competition makes sense to test some techniques that allow coins to be transferred safely rather than to show that coins can be easily stolen
|
|
|
|
brainless
Member
Offline
Activity: 337
Merit: 34
|
|
July 26, 2024, 03:07:47 PM |
|
I think @WanderingPhilospher forgot us lol...
Hope he's doing ok
He's pretty smart and I think his competition makes sense to test some techniques that allow coins to be transferred safely rather than to show that coins can be easily stolen Maybe it's mind game, all bot busy for find test , and newly bots maybe also block by ping many times, and in background they play real 66 bit puzzle transaction
|
13sXkWqtivcMtNGQpskD78iqsgVy9hcHLF
|
|
|
OxSD
Newbie
Offline
Activity: 8
Merit: 0
|
|
July 26, 2024, 03:14:32 PM |
|
Maybe it's mind game, all bot busy for find test , and newly bots maybe also block by ping many times, and in background they play real 66 bit puzzle transaction A professional bot definitely does not use mempool.space or similar APIs. It uses its own node, so blocking is only for inexperienced bots that use third-party APIs.
|
|
|
|
Baskentliia
Jr. Member
Offline
Activity: 64
Merit: 1
34Sf4DnMt3z6XKKoWmZRw2nGyfGkDgNJZZ
|
|
July 26, 2024, 03:36:33 PM |
|
Hello, are we going to find one of these wallets, deliver it to the Wazirx exchange official and get a reward? Did I get right ? Could you share the program you use?
|
34Sf4DnMt3z6XKKoWmZRw2nGyfGkDgNJZZ
|
|
|
nomachine
Member
Offline
Activity: 488
Merit: 35
|
|
July 26, 2024, 04:47:24 PM Last edit: July 26, 2024, 05:03:37 PM by nomachine |
|
Maybe it's mind game, all bot busy for find test , and newly bots maybe also block by ping many times, and in background they play real 66 bit puzzle transaction A professional bot definitely does not use mempool.space or similar APIs. It uses its own node, so blocking is only for inexperienced bots that use third-party APIs. You actually need full-node distro. And mempool in local network .You should use a separate machine just for that, and another very powerful machine for the Bot and BSGS/Keyhunt.
|
bc1qdwnxr7s08xwelpjy3cc52rrxg63xsmagv50fa8
|
|
|
Akito S. M. Hosana
Jr. Member
Offline
Activity: 91
Merit: 2
|
|
July 26, 2024, 05:10:42 PM |
|
Maybe it's mind game, all bot busy for find test , and newly bots maybe also block by ping many times, and in background they play real 66 bit puzzle transaction A professional bot definitely does not use mempool.space or similar APIs. It uses its own node, so blocking is only for inexperienced bots that use third-party APIs. You actually need full-node distro. And mempool in local network .You should use a separate machine just for that, and another very powerful machine for the Bot and BSGS/Keyhunt. So, how many machines you have ?
|
|
|
|
nomachine
Member
Offline
Activity: 488
Merit: 35
|
|
July 26, 2024, 05:17:59 PM |
|
Maybe it's mind game, all bot busy for find test , and newly bots maybe also block by ping many times, and in background they play real 66 bit puzzle transaction A professional bot definitely does not use mempool.space or similar APIs. It uses its own node, so blocking is only for inexperienced bots that use third-party APIs. You actually need full-node distro. And mempool in local network .You should use a separate machine just for that, and another very powerful machine for the Bot and BSGS/Keyhunt. So, how many machines you have ? Five just in my room.
|
bc1qdwnxr7s08xwelpjy3cc52rrxg63xsmagv50fa8
|
|
|
|