What Is a Blockchain, in Plain Terms?
The one-sentence version
A blockchain is a shared record book that many computers keep identical copies of, built so that entries are extremely hard to alter after the fact.
The U.S. National Institute of Standards and Technology puts it more formally in NIST IR 8202, which describes blockchains as tamper-evident and tamper-resistant digital ledgers, implemented in a distributed fashion and usually operating without a central authority. Every phrase there does work:
- Ledger — it records transactions, like an accounting book.
- Distributed — many independent computers hold full copies.
- Tamper-evident — if someone alters an old entry, the alteration is detectable.
- Without a central authority — no single company or administrator decides what the record says.
In short: a blockchain is bookkeeping by committee, with math standing in for a trusted bookkeeper.
What is actually in a block
A block is a batch of recent transactions plus a small amount of housekeeping data. The critical piece of housekeeping is a cryptographic hash — a fingerprint computed from the previous block's contents. Each block carries the fingerprint of the block before it, which is what forms the chain.
This linking is the heart of the tamper resistance. Change any detail in an old block and its fingerprint changes; the next block now points at a fingerprint that no longer matches, and so does every block after that. As NIST IR 8202 explains, rewriting history means redoing the work for the altered block and every block since, on a network where honest participants are simultaneously extending the real chain.
In short: blocks are batches of records, chained by fingerprints, so editing the past means visibly breaking everything built on top of it.
Who decides what gets added
With no administrator, the network needs a way to agree on the next block. That's a consensus mechanism. The original design, described in the Bitcoin whitepaper, uses proof of work: participants race to solve a computational puzzle, and the winner's block is added. Other systems use different mechanisms — the comparison gets its own page at proof of work vs. proof of stake.
What a blockchain is not
A few boundaries keep the concept honest:
- It is not automatically true. A blockchain preserves whatever was written to it, including mistakes and lies. It guarantees the record hasn't been altered, not that the record was accurate when made.
- It is not always the right tool. NIST's overview is notably measured on this point: distributed ledgers carry real costs in speed and complexity, and a conventional database serves many purposes better.
- It is not one thing. Designs differ in who may participate, how consensus works, and what gets recorded. "Blockchain" names a family of designs, not a single product.
Bottom line
A blockchain is a distributed, append-mostly ledger whose structure makes past entries tamper-evident. That single property — a shared history nobody can quietly edit — is the foundation every other concept in this catalog builds on. For how transactions move through such a system, continue to how a Bitcoin transaction works.