What Is a Blockchain? The Version Without the Hype
A blockchain is a shared record that nobody can quietly rewrite. Mining, nodes and consensus all exist to make that one property true.
What this covers
Most explanations of blockchain start with the word “decentralised” and go downhill from there. Here is a version that starts somewhere more useful: with the problem it was built to solve.
The problem
Imagine a shared spreadsheet listing who owns what. If one person controls the file, they can change any row at any time. Everyone using that spreadsheet has to trust that person: to be honest, to stay solvent, to not get hacked, and to not be forced by someone else to make a change.
Banks solve this with regulation, audits and legal liability. It mostly works. It also means the record only exists as long as the institution does, and it only stays accurate as long as everyone with edit access behaves.
A blockchain solves the same problem differently: make the record impossible to quietly rewrite, so that nobody needs permission to check it, and nobody needs to be trusted to maintain it.
How the record is built
Transactions are collected into a block, a batch usually covering a few seconds or minutes of activity. Each block contains a fingerprint of the block before it.
That fingerprint is the whole trick. It is produced by a hash function: feed in any data, get back a fixed-length string. Change one character of the input and the output changes completely and unpredictably. So if someone edits a transaction inside block 500, the fingerprint of block 500 changes, which breaks the reference stored in block 501, which breaks 502, and so on to the present.
You cannot edit history quietly. You can only edit it loudly, and everyone watching sees the chain no longer matches.
Who keeps the copies
The record is stored by thousands of independent computers, called nodes. Each one holds the full history and checks every new block against the rules. Is the signature valid, does the sender actually have the coins, does the fingerprint line up.
A node that receives an invalid block simply rejects it. There is no appeal and no administrator to override the decision. This is what people mean by “trustless”: you are not trusting an operator, you are checking arithmetic.
Anyone can run one. It is a normal program on normal hardware, and running one yourself is the only way to verify your own balance without asking a company to tell you what it is.
Who decides what goes in the next block
This is the part that differs between networks, and it is where the energy debate lives.
Proof of work (Bitcoin): computers compete to solve a meaningless but difficult puzzle. The winner proposes the next block and collects a reward. Rewriting history would mean redoing all that work faster than the entire rest of the network. Theoretically possible, practically ruinous.
Proof of stake (Ethereum since 2022): participants lock up coins as collateral and are selected to propose blocks. Cheating costs you the collateral. The security comes from money at risk rather than electricity spent.
Both answer the same question, which is how strangers agree on one version of events without a referee, and both make attacking the record more expensive than whatever you would gain from it.
What this actually buys you
| Property | What it means in practice |
|---|---|
| Tamper-evidence | Old entries cannot be changed without everyone noticing |
| Open verification | Anyone can check the whole history themselves |
| No gatekeeper | No account to be frozen, no application to be approved |
| Availability | The record survives any single company, country or server |
What it does not buy you
This is the part usually left out.
A blockchain guarantees that the record is accurate. It guarantees nothing about whether what the record describes is worth anything, whether the project behind a token is real, or whether the person who took your money was honest. “It’s on the blockchain” means the transaction happened. It does not mean the transaction was a good idea.
It also cannot be undone. There is no chargeback, no fraud department and no reversal. Send to the wrong address and the network will faithfully, permanently record your mistake.
And it is slow and expensive compared to a database, because thousands of machines are each doing the same work. That cost is the price of removing the trusted operator. For most software, that trade is a bad deal. For a shared ledger of ownership that nobody should be able to edit, it is the whole point.
If you want to go deeper
The Bitcoin whitepaper is nine pages and more readable than its reputation suggests, and it lays out this exact argument in the author’s own words. For the proof-of-stake side, ethereum.org’s documentation covers the mechanics in detail.