Hey everyone ππ»,
In this article, let us understand theΒ Structure of a Block in a Blockchain. This is the second part of myΒ Blockchain Series.
π¦ β π¦ β π¦ β π¦ β π¦ β π¦
The Structure of a Block in a Blockchain β ?
Blockchain,Β as we know, is a shared digital ledger that records a list of transactions that happen throughout the network. Now this can pretty quickly become longer thus ending with a never ending list of transactions. To get more fine grain control, it is split into a chain.
Right. A chain of blocks βπ¦.
So let us understand what a block π¦ is:
π¦Β BlockΒ is kind of a box into which we group all the transactions that we want to add to the blockchain.
Other than a list of transactions, a block also holds a couple of other things.
In the header of the block , we have a couple of other things:
ππ»Previous block hash
ππ»Timestamp (the time a black was made)
ππ»Merkle Root
ππ»Nonce
β Previous Block Hash
It is the hash value for the block that comes directly before the given block in the chain. This is what helps in connecting the blocks of our blockchain.
Timestamp β²β
It is the time that represents when the block was made. This helps us in knowing when certain transactions took place and also solves other problems which we will discuss a bit later.
Merkle Root π΄
It is the hash that represents the entire transactions that happened inside the block.
To find the Merkle Root, pair of transactions within the block are repeatedly hashed together until we are left with a single hash value.
Nonce
Nonce stands for βnumber only used once,β which is a number added to a hashed block in a blockchain that, when rehashed, meets the difficulty level restrictions. The nonce is the number that blockchain miners are solving for, in order to receive cryptocurrency. We will learn more on this in a separate article onΒ Bitcoin
So this is it for the second article on Blockchain. Thanks for reading !