Bitcoin Forum
June 18, 2025, 03:11:50 PM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 [270] 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 ... 534 »
  Print  
Author Topic: Bitcoin puzzle transaction ~32 BTC prize to who solves it  (Read 309405 times)
Kamoheapohea
Jr. Member
*
Offline Offline

Activity: 48
Merit: 12


View Profile
July 20, 2024, 11:28:27 AM
 #5381

I will join and create my transaction with 6.6 BTC fees  Cool
BackyardGeniusBTC
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
July 20, 2024, 12:23:09 PM
Last edit: July 20, 2024, 10:44:32 PM by Mr. Big
 #5382

Hey, i have somethings id like to chat about in regards to addressmagic. no im not a troll <3 but i think we could benefit from each other.

I WILL NOT ASK YOU FOR CRYPTO OR MONEY I AM PURELY A NERD



Hey, i have somethings id like to chat about in regards to addressmagic. no im not a troll <3 but i think we could benefit from each other.

I WILL NOT ASK YOU FOR CRYPTO OR MONEY I AM PURELY A NERD

P.S THIS IS MY FIRST BTCTALK account i have no idea how to navigate it lol
GR Sasa
Member
**
Offline Offline

Activity: 200
Merit: 14


View Profile
July 20, 2024, 02:20:03 PM
 #5383

@nomachine

could you please give us a step by step tutorial to run a script to try to drain the bitcoin?

Since it's in 4 hours and since he's doing it live, I would probably try to manually extract the public key and manually try to re send the transaction. But since there are million of transaction how to catch the targeted address?
albert0bsd
Hero Member
*****
Offline Offline

Activity: 1120
Merit: 718



View Profile
July 20, 2024, 02:29:57 PM
Last edit: July 20, 2024, 02:41:30 PM by albert0bsd
 #5384

But since there are million of transaction how to catch the targeted address?

I use the mempool API in my script/bot
https://mempool.space/docs/api/rest#get-address-transactions-mempool

you can retrieve the mempool TX related to one address even if those TX are unconfirmed

Code:
curl -sSL "https://mempool.space/api/address/197kFKvMHoRJPXktc8xJwMjeTuE9xijBQ/txs/mempool"
nomachine
Full Member
***
Offline Offline

Activity: 686
Merit: 104


View Profile
July 20, 2024, 03:35:06 PM
Last edit: July 20, 2024, 04:25:41 PM by nomachine
 #5385

@nomachine

could you please give us a step by step tutorial to run a script to try to drain the bitcoin?

Since it's in 4 hours and since he's doing it live, I would probably try to manually extract the public key and manually try to re send the transaction. But since there are million of transaction how to catch the targeted address?

Here’s how you can do it in Python:

Code:
pip3 install requests

one-line command in Python

1DWQHdi1mh27vcUyrN5NYB1kWrs3BBKUXA :
Code:
python3 -c "import requests; import sys; address = sys.argv[1]; url = f'https://mempool.space/api/address/{address}/txs/chain'; r = requests.get(url); txs = r.json(); pubkey = next((vin['scriptsig'][-66:] for tx in txs for vin in tx['vin'] if 'scriptsig' in vin), None); print(f'Public key for address {address}: {pubkey}' if pubkey else 'Public key not found');" 1DWQHdi1mh27vcUyrN5NYB1kWrs3BBKUXA

197kFKvMHoRJPXktc8xJwMjeTuE9xijBQ :
Code:
python3 -c "import requests; import sys; address = sys.argv[1]; url = f'https://mempool.space/api/address/{address}/txs/chain'; r = requests.get(url); txs = r.json(); pubkey = next((vin['scriptsig'][-66:] for tx in txs for vin in tx['vin'] if 'scriptsig' in vin), None); print(f'Public key for address {address}: {pubkey}' if pubkey else 'Public key not found');" 197kFKvMHoRJPXktc8xJwMjeTuE9xijBQ

All you need to do is press Enter until it appears. It will appear the moment he clicks send. Grin


BTC: bc1qdwnxr7s08xwelpjy3cc52rrxg63xsmagv50fa8
kTimesG
Full Member
***
Offline Offline

Activity: 504
Merit: 129


View Profile
July 20, 2024, 04:48:53 PM
 #5386

Let's hope that n00b bots won't increase the fee when they detect their own tx in the mempool during the battle.

Off the grid, training pigeons to broadcast signed messages.
wilspen
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
July 20, 2024, 06:49:33 PM
 #5387

Let's hope that n00b bots won't increase the fee when they detect their own tx in the mempool during the battle.


fierce battle in the mempool in the wallet    
197kFKvMHoRJPXktc8xJwMjeTuE9xijBQ with RBF disabled

It was already supposed to be 66, it's been proven that even with RBF deactivated and it's possible to change, there were more than 4 RBF from what I saw
GR Sasa
Member
**
Offline Offline

Activity: 200
Merit: 14


View Profile
July 20, 2024, 06:55:31 PM
 #5388

fucking hell, i couldn't replace the transaction by any higher fee i got the error saying insufficient fees. wtf
averagetoaster
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
July 20, 2024, 06:56:43 PM
 #5389

Barely caught it myself. I guess this confirms that anything under 90 or 100 is a waste of time.
Thank you for the experiment, brazilian man.
wilspen
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
July 20, 2024, 06:58:18 PM
 #5390

fucking hell, i couldn't replace the transaction by any higher fee i got the error saying insufficient fees. wtf


In this case they did not use a wallet, a direct process was carried out in the transaction, AlbertoBSD won the battle, and could give us more details of what was done.     Grin
kTimesG
Full Member
***
Offline Offline

Activity: 504
Merit: 129


View Profile
July 20, 2024, 06:58:57 PM
 #5391

fucking hell, i couldn't replace the transaction by any higher fee i got the error saying insufficient fees. wtf
Weird. All I got was "Error: txn-mempool-conflict" when trying to push the new TX (key was cracked in seconds).

So I guess it depends on how to push a raw TX bypassing this error. I'm sure a P2P node can bypass this problem. So not sure what exactly was proven here, except some mempool rules depending on who you broadcast the TX to.

Off the grid, training pigeons to broadcast signed messages.
GR Sasa
Member
**
Offline Offline

Activity: 200
Merit: 14


View Profile
July 20, 2024, 07:00:12 PM
 #5392

Congrats if Alberto Won. Clearly he deserved it, along with Nomachine Wanderingidkphotopsia too
WanderingPhilospher
Sr. Member
****
Offline Offline

Activity: 1372
Merit: 268

Shooters Shoot...


View Profile
July 20, 2024, 07:03:03 PM
 #5393

Can anyone give a rundown on what happened?

Like the original broadcasted transaction, the competing transactions, and which one won?
wilspen
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
July 20, 2024, 07:05:36 PM
 #5394

fucking hell, i couldn't replace the transaction by any higher fee i got the error saying insufficient fees. wtf
Weird. All I got was "Error: txn-mempool-conflict" when trying to push the new TX (key was cracked in seconds).

So I guess it depends on how to push a raw TX bypassing this error. I'm sure a P2P node can bypass this problem. So not sure what exactly was proven here, except some mempool rules depending on who you broadcast the TX to.



Is it not clear what was proven? hears at least 4 RBF in the transaction, and the transaction was sent with the RBF deactivated, finally, to the guy who said he found wallet 66 and is scared, it's proven that he will lose the BTCs if he tries to transfer, and to the rest of the people who are looking for it, it is worth reflecting on whether it is worth wasting energy looking for a key when they could lose the funds, perhaps the only way to make the transfer securely is through a miner, but even then it would be risky, you have to trust too much in the miner, hahaha
kTimesG
Full Member
***
Offline Offline

Activity: 504
Merit: 129


View Profile
July 20, 2024, 07:10:48 PM
 #5395

fucking hell, i couldn't replace the transaction by any higher fee i got the error saying insufficient fees. wtf
Weird. All I got was "Error: txn-mempool-conflict" when trying to push the new TX (key was cracked in seconds).

So I guess it depends on how to push a raw TX bypassing this error. I'm sure a P2P node can bypass this problem. So not sure what exactly was proven here, except some mempool rules depending on who you broadcast the TX to.



Is it not clear what was proven? hears at least 4 RBF in the transaction, and the transaction was sent with the RBF deactivated, finally, to the guy who said he found wallet 66 and is scared, it's proven that he will lose the BTCs if he tries to transfer, and to the rest of the people who are looking for it, it is worth reflecting on whether it is worth wasting energy looking for a key when they could lose the funds, perhaps the only way to make the transfer securely is through a miner, but even then it would be risky, you have to trust too much in the miner, hahaha
I have no idea what actually went down, I didn't understand anything from the live stream. All I know was I tried pushing around 20 or so transactions with higher fees (no RBF, classic TX) and none went through due to "mempool rules" errors. I searched for different broadcasters to push the raw TX (even chinese lol). I am 100% sure there had to exist a way to push a completely valid TX with a higher fee.

Also did the mempool.space API worked? Maybe I had an error in my script but it didn't seem to return any data for the outgoing transaction which was supposed to be used as an input, during all of the time. Someone can shed light if their API worked or not?

Off the grid, training pigeons to broadcast signed messages.
wilspen
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
July 20, 2024, 07:11:41 PM
 #5396

Can anyone give a rundown on what happened?

Like the original broadcasted transaction, the competing transactions, and which one won?

Take a look at the previous posts and you will understand the context.
lmajowka
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
July 20, 2024, 07:13:42 PM
 #5397

Barely caught it myself. I guess this confirms that anything under 90 or 100 is a waste of time.
Thank you for the experiment, brazilian man.

Thank you to everyone that participated 🙏
WanderingPhilospher
Sr. Member
****
Offline Offline

Activity: 1372
Merit: 268

Shooters Shoot...


View Profile
July 20, 2024, 07:14:04 PM
 #5398

Can anyone give a rundown on what happened?

Like the original broadcasted transaction, the competing transactions, and which one won?

Take a look at the previous posts and you will understand the context.
Yeah, Bud, I know the concept of this whole test. I wanted to know if anyone took snapshots or notes, of how many different people / competing transactions were happening, before whichever one, finally got through. The play by play, wilspen.
jacky19790729
Jr. Member
*
Offline Offline

Activity: 82
Merit: 8


View Profile
July 20, 2024, 07:20:32 PM
Last edit: July 22, 2024, 08:11:40 PM by jacky19790729
 #5399

Can anyone give a rundown on what happened?
Like the original broadcasted transaction, the competing transactions, and which one won?


197kFKvMHoRJPXktc8xJwMjeTuE9xijBQ  ==>  18UGZENCDBHF8ciPUuHFDMDNy1vm8aUmYt  

someone use high Fee to replace orig Txid and got 0.00467224  BTC   ( bc1qcrej0q6xqfyr9ecayk3y6khykuugt7za6umuk4 )

https://mempool.space/tx/354dbcb6fd3532a051e1e363c9122d862949c3d075280d4144f719d6ba99e14a

puzzle 66 is unsafe   Cry Cry Cry



wilspen
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
July 20, 2024, 07:21:05 PM
 #5400

Can anyone give a rundown on what happened?

Like the original broadcasted transaction, the competing transactions, and which one won?

Take a look at the previous posts and you will understand the context.
Yeah, Bud, I know the concept of this whole test. I wanted to know if anyone took snapshots or notes, of how many different people / competing transactions were happening, before whichever one, finally got through. The play by play, wilspen.

Take a look at the live stream, there you can see the addresses that did RBF and were then overlapped, it happened about 3-4 times.

Maybe your address was there, just look at the time when the mempool website was open and the addresses changed
Pages: « 1 ... 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 [270] 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 ... 534 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!