Bitcoin Forum
June 24, 2024, 10:28:30 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: November 07, 2018, 07:25:34 PM
Thank you arulbero and BurtW!!

Now i can get to the good stuff. Really appreciate it!
2  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: November 07, 2018, 05:57:22 PM
Hi guys, I'm trying to understand the procedure to solving this puzzle, starting from the easy ones that were solved already. Im clearly a little over my head here, and I cannot figure out what I am doing wrong.

I have this code so far, which gives me the same results as this website (https://brainwalletx.github.io/#generator), but they never match what I see here. So clearly i'm doing something wrong

Code:
let bitcoin = require('bitcoinjs-lib');

let pvk_seed = '000000000000000000000000000000000011';
let hash = bitcoin.crypto.sha256(pvk_seed);
const keyPair = bitcoin.ECPair.fromPrivateKey(hash);
const { address } = bitcoin.payments.p2pkh({ pubkey: keyPair.publicKey });

let wif = keyPair.toWIF();

console.log(`${pvk_seed} = Address ${address}, WIF : ${wif}`)


That code is using 3 to generate PVK, ive tried 3 in Decimal, Binary, Hex, nothing works.

Thanks for any tips

Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!