Crypto Flexs
  • DIRECTORY
  • CRYPTO
    • ETHEREUM
    • BITCOIN
    • ALTCOIN
  • BLOCKCHAIN
  • EXCHANGE
  • ADOPTION
  • TRADING
  • HACKING
  • SLOT
Crypto Flexs
  • DIRECTORY
  • CRYPTO
    • ETHEREUM
    • BITCOIN
    • ALTCOIN
  • BLOCKCHAIN
  • EXCHANGE
  • ADOPTION
  • TRADING
  • HACKING
  • SLOT
Crypto Flexs
Home»BITCOIN NEWS»sha256 – Compute block header hash
BITCOIN NEWS

sha256 – Compute block header hash

By Crypto FlexsNovember 29, 20232 Mins Read
Facebook Twitter Pinterest LinkedIn Tumblr Email
sha256 – Compute block header hash
Share
Facebook Twitter LinkedIn Pinterest Email

I use the following code to calculate the header hash:

function serializeBlockHeader(blockHeader) 
    const version = Buffer.alloc(4);
    version.writeUInt32LE(blockHeader.version);
    console.log('version length', version.length, version)

    const previousBlockHash = Buffer.from(blockHeader.previousblockhash, 'hex').reverse();
    console.log('previousBlockHash length', previousBlockHash.length, previousBlockHash)

    const merkleRoot = Buffer.from(blockHeader.merkleroot, 'hex').reverse();
    console.log('merkleRoot length', merkleRoot.length, merkleRoot)


    const time = Buffer.alloc(4);
    time.writeUInt32LE(blockHeader.time);
    console.log('time length', time.length, time)

    const bits = Buffer.from(blockHeader.bits, 'hex').reverse();
    console.log('bits length', bits.length, bits)


    const nonce = Buffer.alloc(4);
    nonce.writeUInt32LE(blockHeader.nonce);
    console.log('nonce length', nonce.length, nonce)

    const headerBuffer = Buffer.concat((
        version,
        previousBlockHash,
        merkleRoot,
        time,
        bits,
        nonce
    ));

    return headerBuffer.toString('hex');


function hash256(hexStr) 
    const data = Buffer.from(hexStr, 'hex')
    const hash1 = crypto.createHash('sha256').update(data).digest();
    const hash2 = crypto.createHash('sha256').update(hash1).digest();
    return hash2.toString('hex');


client.getBlockHash(600000) 
  .then((blockHash) => 
    client.getBlockHeader(blockHash)
      .then((blockHeader) => 
        console.log('Block Header:', blockHeader);
        const headerBytes = serializeBlockHeader(blockHeader)
        console.log("headerBytes", headerBytes)
        
        console.log('header hash:', hash256(headerBytes))
      )
      .catch((err) => 
        console.error('Error getting block header:', err);
      );
  )
  .catch((err) => 
    console.error('Error getting block hash:', err);
  );

The output is

Block Header: (Object: null prototype) 
  hash: '00000000000000000007316856900e76b4f7a9139cfbfba89842c8d196cd5f91',
  confirmations: 153235,
  height: 600000,
  version: 536870912,
  versionHex: '20000000',
  merkleroot: '66b7c4a1926b41ceb2e617ddae0067e7bfea42db502017fde5b695a50384ed26',
  time: 1571443461,
  mediantime: 1571440177,
  nonce: 1066642855,
  bits: '1715a35c',
  difficulty: '13008091666971.9',
  chainwork: '00000000000000000000000000000000000000000962281c680c87bdb11f440b',
  nTx: 1925,
  previousblockhash: '00000000000000000003ecd827f336c6971f6f77a0b9fba362398dd867975645',
  nextblockhash: '00000000000000000000817313d6b5fe4838ec6eff47fbe7c4b9f22a40c2a4f4'

version length 4 <Buffer 00 00 00 20>
previousBlockHash length 32 <Buffer 45 56 97 67 d8 8d 39 62 a3 fb b9 a0 77 6f 1f 97 c6 36 f3 27 d8 ec 03 00 00 00 00 00 00 00 00 00>
merkleRoot length 32 <Buffer 26 ed 84 03 a5 95 b6 e5 fd 17 20 50 db 42 ea bf e7 67 00 ae dd 17 e6 b2 ce 41 6b 92 a1 c4 b7 66>
time length 4 <Buffer 05 53 aa 5d>
bits length 4 <Buffer 5c a3 15 17>
nonce length 4 <Buffer a7 ad 93 3f>
headerBytes 0000002045569767d88d3962a3fbb9a0776f1f97c636f327d8ec0300000000000000000026ed8403a595b6e5fd172050db42eabfe76700aedd17e6b2ce416b92a1c4b7660553aa5d5ca31517a7ad933f
header hash: 915fcd96d1c84298a8fbfb9c13a9f7b4760e9056683107000000000000000000
reverse hash: 00000000000000000007316856900e76b4f7a9139cfbfba89842c8d196cd5f91

Why do I need to invert the result of a double hash to get the correct header hash?

Share. Facebook Twitter Pinterest LinkedIn Tumblr Email

Related Posts

It announces the provision of the largest regulatory futures in Europe to strengthen its leading market in the region.

May 20, 2025

Chart Decoder Series: RSI -The easiest way to discover superb and overlooking markets

May 20, 2025

Is the transaction fee the lowest?

May 19, 2025
Add A Comment

Comments are closed.

Recent Posts

XRP News: XRPTURBO will be live by 25% APY Liquid Staying, and $ XRT will launch governance DApps at 150%.

May 21, 2025

RayTurbo data improvement increases processing speed by 5 times

May 21, 2025

Despite the mini price rally, the reason why Ethena buyers should be careful is as follows.

May 21, 2025

Together, we launch code sandboxes and interpreters to develop AI with enhanced AI.

May 21, 2025

‘Hawk Tuah Girlie Welch said that the FBI surveyed her’ Memecoin Disaster ‘.

May 21, 2025

DOW drops 115 points after the six -day rally of the S & P 500.

May 21, 2025

AI innovates Peru’s education. The teacher accepts Microsoft Copilot

May 21, 2025

How to start a bitcoin mining machine with Dogecoin (DOGE)

May 21, 2025

Bitcoin is ready to ‘evaporate’ shorts when the price discovery of more than $ 110K begins

May 21, 2025

The SEC is charged with Unicoin and executives for $ 100 million fraud.

May 21, 2025

Trader says Bitcoin (BTC) warns a weak reversal signal, and there is a gold meeting steam for the next leg.

May 21, 2025

Crypto Flexs is a Professional Cryptocurrency News Platform. Here we will provide you only interesting content, which you will like very much. We’re dedicated to providing you the best of Cryptocurrency. We hope you enjoy our Cryptocurrency News as much as we enjoy offering them to you.

Contact Us : Partner(@)Cryptoflexs.com

Top Insights

XRP News: XRPTURBO will be live by 25% APY Liquid Staying, and $ XRT will launch governance DApps at 150%.

May 21, 2025

RayTurbo data improvement increases processing speed by 5 times

May 21, 2025

Despite the mini price rally, the reason why Ethena buyers should be careful is as follows.

May 21, 2025
Most Popular

Biggest Altcoin Gainers in the Last Week of July 2024

August 5, 2024

Coinbase Kenya, New Morocco Laws

December 1, 2024

Use BSTR miners to produce encryption parts through strategic merger

April 4, 2025
  • Home
  • About Us
  • Contact Us
  • Disclaimer
  • Privacy Policy
  • Terms and Conditions
© 2025 Crypto Flexs

Type above and press Enter to search. Press Esc to cancel.