Part One — Why
Anchor tracks: I Love My Blockchain, Buy Bitcoin (BTC), Buy Ethereum (ETH)
The reader's question: why does any of this exist?
1. Who holds the ledger
Every money system in history is a record of who owns what.
That is all a bank balance is. There is no pile of notes with your name on it in a vault somewhere. There is a line in a database saying you are owed a number, and the bank's promise to honour it. The notes in your pocket are the same thing in a more portable form — valuable because a government says so and everyone agrees to go along with it.
So the interesting question about any money system is never "what is the money made of." It is: who keeps the record, and who is able to change it?
For almost all of history the answer has been a trusted institution. A bank, a clearing house, a government. That arrangement works well most of the time, and it is the reason you can dispute a fraudulent charge and get your money back. It also means the record can be edited by whoever holds it — frozen, reversed, or lost — and that you need their permission to participate at all.
Bitcoin proposed a different answer: keep the record in public, give everyone a copy, and make changing it require agreement from a majority of participants rather than permission from one of them.
Everything else in this book follows from that one substitution.
2. What a blockchain actually does
A blockchain is a shared record of transactions that everyone can check and no single party controls.
Three properties make it work.
It is shared. Thousands of computers — called nodes — each keep a full copy and independently check every rule. There is no head office. If your copy and mine disagree, the network's rules decide which is right, and it is not settled by whoever is more important.
It is public. Anyone can read it, without an account and without asking. You can look up any transaction that has ever happened on it, right now, for free, using a block explorer. This is genuinely unusual, and it is the single most useful habit this book will try to give you: when someone tells you money moved, you can go and look.
It is ordered. Transactions are gathered into blocks, and each block carries a fingerprint of the one before it. Change anything in an old block and every fingerprint after it stops matching — visibly, to everyone. That chain of fingerprints is what the word blockchain describes, and it is why rewriting history is impractical rather than merely forbidden.
What it does not do is make anything true. The ledger honestly records that an amount moved from one address to another. It has no opinion about whether the person receiving it was honest, whether the token is worth anything, or whether you were tricked.
The ledger is honest. The people using it are not necessarily. Hold onto that distinction — most of Part Four depends on it.
3. Why permanence cuts both ways
Once something is written to a chain it cannot be edited or deleted. The word for this is immutable.
This is the feature. It is why nobody can quietly reverse a payment you received, freeze your account during a dispute, or edit the record to say something else happened.
It is also the danger, and it is the same property. There is no undo button, no chargeback, no fraud department, and no support line.
Send funds to the wrong address and they are gone — not because someone is refusing to help you, but because the mechanism to reverse it does not exist. Approve a malicious transaction and it executes. Lose the words that control your wallet and the funds sit there, visible on the public ledger forever, unreachable by anyone including you.
People arriving from online banking consistently underestimate this, because every other financial system they have used had a human being somewhere in it who could fix things. Here there is not one. The absence of that person is the product.
The practical consequence: slow down at exactly the two moments where slowing down feels most annoying — sending to a new address, and approving a transaction. Send a small test amount first. Read what you are signing. Those two habits prevent most irreversible mistakes, and they cost a few seconds and a small fee.
4. Fixed supply
Bitcoin has a fixed supply: 21 million coins, ever.
That number is not a promise made by a company. It is a rule enforced by every node on the network. A block creating more would simply be rejected by everyone — the way a chess move that teleports a rook is not a controversial move but not a move at all.
This matters because the alternative, money that can be created at will, is the norm, and its consequences are why many people came to this in the first place. Whether capped supply is good economics is a real argument with serious people on both sides, and this book takes no position on it.
What this book does insist on is the reasoning. Scarce does not mean valuable. Something is only worth something if people want it, and there are thousands of tokens with strictly limited supply that are worth nothing at all. Scarcity is a necessary condition for one kind of value argument, never a sufficient one.
The related idea worth learning early is divisibility. One Bitcoin divides into 100 million units called satoshis, or sats. You never needed a whole coin. The belief that you did has kept a lot of people out of something they could have joined for the price of a coffee.
5. Programmable money
Bitcoin moves value. Ethereum added the ability to run programs.
A smart contract is a program stored on a blockchain that runs exactly as written whenever someone calls it. Nobody chooses to honour it and nobody can decline to. Once deployed, it does what it says.
That opens up everything the rest of this book covers: tokens anyone can issue, marketplaces with no company behind them, lending between strangers, and collectibles that live on a ledger instead of in a company's database.
It also opens up the failure modes.
"Contract" is a badly chosen word, because it implies a legal protection that is not present. There is no arbitrator, no court, and nobody enforcing it on your behalf. If the code permits your funds to be taken, they are taken, and the contract worked as designed. The code is the agreement in full, including the parts nobody told you about.
This is why code audit appears throughout the book. An audit is a paid review by outside security specialists, published as a report — the closest thing this field has to a safety inspection. It is genuinely useful and routinely misrepresented. "Audited" as a word on a website means nothing. An audit report naming the firm, the date, and the specific version reviewed means something, and that is what to look for.
One more wrinkle, because it catches careful people. Many contracts sit behind a proxy — an arrangement letting the logic be replaced later. It is how projects ship fixes. It also means the safe contract you read today can become a different contract tomorrow, if someone holds the key to change it. When you look at a project, ask who can upgrade it.
Written outcome
You can explain a blockchain to a friend in under a minute without using "revolutionary," "disrupt," or "the future of money."
Try it now, out loud. If your explanation includes who keeps the record, why it cannot be edited, and what that costs you as well as what it gets you, it is a good explanation.
Next: Part Two is the most important chapter in this book. Everything downstream depends on it.