1. Quick Summary
A blockchain is an append-only record shared across many computers. Each new batch of entries references the previous one cryptographically, so altering old data requires redoing everything after it.
Its purpose is to let parties who do not trust each other agree on what happened, without a central authority keeping the books.
2. What It Means
Entries are grouped into blocks. Each block contains a hash of its own contents plus the hash of the previous block, forming a chain.
A hash function turns any input into a fixed-length fingerprint. Change one character and the fingerprint changes completely, which makes tampering immediately detectable.
Consensus is the hard part: the network needs a rule for deciding which version of history is the official one when copies disagree.
3. Why It Happens
Because each block commits to the previous one, rewriting an old entry means recomputing that block and every block after it — and doing it faster than the rest of the network adds new ones.
Proof of work makes rewriting expensive by requiring participants to burn computing power searching for a valid block. Proof of stake instead requires locking up value that can be forfeited for cheating.
The longest valid chain — or the one with the most accumulated weight — wins. Nodes simply follow whichever chain they judge to be the strongest.
This design trades efficiency for trust-minimisation. Thousands of computers store and verify the same data, which is far slower and more expensive than a single database.
Blockchain guarantees that recorded data has not been altered; it does not guarantee that the data was true when it was entered.
4. Real Examples
Bitcoin applies it to money: the ledger tracks who owns what, and consensus decides which transactions count.
Supply chains use it to record custody handoffs, so every participant can verify provenance without trusting a single vendor’s database.
Smart contracts are programs stored on the chain that execute automatically when their conditions are met, which is what makes decentralised finance possible.
Private or permissioned blockchains run the same ideas inside one organisation, where the participants are known and the consensus problem is much easier.
5. How It Affects Us
It enables value transfer and record-keeping across borders and institutions without a clearinghouse, at the cost of speed and energy.
It shifts trust from institutions to code and cryptography, which introduces new failure modes — bugs in contracts are irreversible.
For most ordinary database problems a blockchain is the wrong tool; it earns its cost only when no single party can be trusted to keep the record.
6. Key Takeaways
- A blockchain is a tamper-evident shared ledger maintained by consensus, not by a central owner.
- Hashing links blocks so that changing history requires redoing all later work.
- Consensus rules such as proof of work and proof of stake decide which history wins.
- It guarantees integrity of the record, not truthfulness of what was recorded.