Skip to content
Glossary

Block

A block is a batch of transactions bundled together and added to a blockchain as one unit. Blocks are the “pages” of the ledger, added in sequence and linked to form the chain.

How it works

Each block contains a set of validated transactions, a timestamp, and a cryptographic reference to the previous block, which is what chains them in order. The network’s consensus mechanism decides who gets to add the next block; on a proof-of-work chain that is the winning miner, who also receives the block reward. Once added and confirmed by later blocks, a block’s contents become very hard to change.

Why it matters

Grouping transactions into linked blocks is what gives a blockchain its tamper-resistant order. A block’s size and how often blocks are produced also shape a network’s capacity and fees.

Example

The very first block of a blockchain is called the genesis block, the foundation every later block builds on.

Block: Frequently Asked Questions

What is inside a block?
A block contains a set of validated transactions, a timestamp, and a cryptographic reference to the previous block. That reference is what chains blocks in order and makes the history tamper-resistant. On proof-of-work chains, the winning miner who adds the block also receives the block reward.
What is the genesis block?
The genesis block is the very first block of a blockchain, the foundation every later block builds on. Because there is no earlier block for it to reference, it is a special starting point. All subsequent blocks link back through the chain to this original block.
How does block size affect a blockchain?
A block's size and how often blocks are produced shape a network's capacity and fees. Larger or more frequent blocks can carry more transactions, but they also place greater demands on the nodes that store and relay the chain. These parameters are a core trade-off in how a blockchain is designed.