Every technology explanation you have read probably started with an analogy — a ledger, a spreadsheet, a chain of Legos. Those all point at something real. Let us start from what a blockchain actually is, then use one analogy at a time to build the intuition.
The one sentence definition
A blockchain is a shared, tamper-resistant, append-only record that is stored identically on many independent computers and updated only when those computers agree.
Four features hide inside that sentence. Take them one at a time.
Feature 1: append-only
You do not edit a blockchain. You add to it. Once a transaction is written, the record of it stays there forever. If you want to reverse a mistake, you write a new transaction that undoes it — the original still exists.
This is different from a bank account. Your bank statement can be corrected. If they made a fee mistake in January, they reverse it and re-issue the statement. On a blockchain, the wrong charge stays visible; the correction sits next to it.
Feature 2: chained
Transactions are bundled into blocks. Each block contains a fingerprint (called a hash) of the block before it. That fingerprint depends on every single byte of the previous block. So if anyone changes anything in an old block — even one character — the fingerprint changes, and every block after it becomes invalid.
Feature 3: shared
Every computer that runs the blockchain software (a node) keeps its own full copy of the record. Bitcoin has tens of thousands of nodes. Ethereum has hundreds of thousands. Solana runs on around a thousand high-end machines. They all agree on what is in the record. If your copy disagrees, the network ignores you.
Feature 4: consensus without a boss
Nobody owns the network. So how do nodes decide which new block to accept? They run a consensus algorithm. The two big families are:
- Proof of Work — nodes race to solve a hard math puzzle. Whoever solves it first proposes the next block. Costs enormous electricity. Used by Bitcoin.
- Proof of Stake — nodes lock up ("stake") coins as collateral. The network randomly picks one to propose the next block. If they cheat, they lose the collateral. Used by Ethereum, Solana, Cardano, and most modern chains.
Both solve the same problem: making sure no single actor can rewrite history, even if they have a lot of money or computers.
Why does any of this matter?
The whole reason people got excited about blockchains is that they let strangers agree on facts without needing a trusted middleman. Before blockchains, if you wanted to send money to someone in another country, at least one bank had to vouch for the transaction. If you wanted to prove you own a piece of art, an auction house or a certificate authority had to say so. Blockchains replaced that with math and code.
That is powerful. It is also incomplete. Blockchains are terrible at some things: they are slow compared to a bank database, they leak your transaction history to anyone who can read the chain, and they cannot verify anything about the physical world (only what is on-chain).
The size of what is on-chain today
To make it concrete, here is roughly how much value sits inside the biggest chains right now.
Reading list before the next chapter
- Wallets & Keys — where you actually hold blockchain assets
- What is DeFi — the financial layer built on top
Recap
A blockchain is a shared, tamper-resistant record that anyone can verify but nobody controls. Everything else — coins, DeFi, NFTs, DAOs — is built on top of those four features. If you understand those, you can reason about the rest.
Koinlytics