What Is a Block in a Blockchain?
The word “blockchain” describes exactly what it is: a chain made of blocks. Understanding what actually sits inside one of those blocks makes the rest of how a blockchain works much easier to follow.
The short answer
A block is a batch of verified transactions bundled together with a timestamp and a reference — usually a cryptographic hash — pointing back to the previous block. That reference is what links each block to the one before it, forming the chain the whole system is named for.
What’s actually inside a block
Every block generally has two parts. The body holds the list of transactions that have been grouped together for that block. The header holds the metadata: a timestamp marking roughly when the block was created, a hash of the previous block’s header, and a summary value representing all the transactions in the block, often built using a structure called a Merkle tree. That summary lets anyone verify a specific transaction is included in the block without needing to download and check every other transaction in it.
Why the reference to the prior block matters
The hash pointing back to the previous block is what gives a blockchain its tamper-evidence. A cryptographic hash is a fixed-length fingerprint of data — change anything in a block, even by one character, and its hash changes completely. Because each block’s header includes the previous block’s hash, altering an old block would change that block’s hash, which would break the link the next block relies on, and the one after that, all the way to the present. Rewriting history isn’t literally impossible, but doing so undetected would require redoing the work or stake behind every subsequent block, which is what makes older blocks progressively harder to alter.
How a new block gets added
Before a block can be appended to the chain, the network needs to agree it’s valid. The specific process depends on the blockchain’s consensus mechanism. Proof-of-work systems, the approach behind Bitcoin mining, have participants compete to solve a computational puzzle, and whoever solves it first gets to propose the next block. Proof-of-stake systems instead select a validator to propose the block based on the amount of cryptocurrency they’ve committed, a process explained in more detail in how staking works in proof-of-stake networks. Either way, other participants on the network check the proposed block against the rules before accepting it and building the next one on top of it.
Why this structure matters for users
- Verifiability. Anyone running a copy of the blockchain can independently check that a block’s contents are valid and correctly linked, without trusting a central authority.
- Immutability in practice. The deeper a block is buried under later blocks, the more computational or economic work it would take to alter it, which is why many systems ask users to wait for several confirmations before treating a transaction as final.
- Transparency of the record. Every confirmed transaction, tied to a public key rather than a name, becomes part of a permanent, publicly checkable history.
The bottom line
A block is nothing more mysterious than a timestamped batch of transactions linked to the one before it — but that simple structure, repeated block after block, is what makes a blockchain resistant to quiet tampering. Once you can picture a chain as a sequence of these linked, verifiable batches, most of the more advanced concepts built on top of it become far easier to reason through.