Lesson 2 of 23
๐ textFree previewBlockchains without the buzzwords
Forget the word blockchain for a moment. Start with a problem.
Imagine a village with no bank. Everyone keeps their own ledger of who owes whom. The obvious problem: I can quietly edit my own copy and claim you paid me. So instead the village agrees on one shared ledger, read aloud in the square, and everyone keeps an identical copy. To change history you would have to convince most of the village at once.
That is it. That is the whole idea.
The three properties that matter
**Shared.** Thousands of independent computers hold the same ledger. There is no master copy on a server somewhere that can be edited.
**Append-only.** You add new entries. You never edit old ones. Every entry references the one before it, so altering an old entry would break every entry after it โ which is what makes tampering detectable rather than merely forbidden.
**Permissionless to read.** Anyone can check any entry. This is why "trust me" is never necessary and why, later in this course, you will verify things yourself rather than taking my word for them.
What it is not
A blockchain is not private. Most are the opposite โ every transaction is public forever. It is not fast; a shared ledger that thousands of machines must agree on will always be slower than one company's database. And it is not magic: a blockchain records that a transfer happened. It has no opinion about whether the transfer was a good idea, and it cannot reverse one.
Why "irreversible" is the word to remember
In a bank, a mistaken payment can often be recalled. On a blockchain, a confirmed transaction is final. Sent to the wrong address? Gone. Signed a malicious approval? Gone.
Every safety habit in this course exists because of that one sentence.