top of page
Yanda logo

Block Header

A block header in a blockchain is a part of a block that contains metadata, including information such as a timestamp, the hash of the previous block, and the proof of work that was used to create the block.

A block header is a vital component of a block in a blockchain. It is used to verify the block's integrity, storing metadata such as the hash or the used proof-of-work consensus mechanism.


The block header contains several key pieces of information, including:

  • The block's hash: This is a unique identifier for the block that is generated using a cryptographic hash function. It is based on the contents of the block, including the transaction data and the block header itself.

  • The previous block's hash is the hash of the block that came before the current block in the chain. This links the blocks together and ensures they are in the correct order.

  • The timestamp: This is the time at which the block was created. It helps to ensure the integrity of the blockchain by making it difficult to alter the contents of a block after it has been added to the chain.

  • A nonce is a random number used as part of the proof-of-work consensus mechanism. Miners attempt to find a nonce that, combined with the other data in the block header, produces a hash that meets certain criteria. This process, known as "mining," is how new blocks are added to the chain.

The block header is essential to the blockchain because it helps ensure the chain's integrity and security. It enables users to verify the authenticity of a block and its contents and helps prevent tampering or other malicious activity.

bottom of page