Why Blockchain?

Blockchain & Web3 Fundamentals
Course 1 · Chapter 1 · Why Blockchain? The Trust Problem It Solves

Before any block, any chain, or any cryptographic hash function shows up, blockchain starts as the answer to one specific, genuinely old problem: how do two people who don't trust each other exchange digital money without a trusted third party in the middle? This chapter is entirely about that problem — what it actually is, why it resisted a clean solution for decades, and the real 2008–2009 moment where Bitcoin first solved it.

The Double-Spending Problem

Physical cash solves its own trust problem by being, well, physical. If you hand someone a £10 note, you no longer have it. There is exactly one copy, and possession of that one copy is the proof of ownership.

Digital information doesn't work that way. A digital file — a photo, a document, a string of bytes representing "£10" — can be copied perfectly and instantly, as many times as you like, with no way to tell the copy from the original. If digital money were just a file, nothing would stop you from emailing that same "£10" file to two different people, or spending it in two different shops at once. This is the double-spending problem: the risk that the same unit of digital currency gets spent more than once, since nothing about the digital token itself prevents duplication.

Why This Isn't a Minor Technical Detail Double-spending isn't a rare edge case to patch around — it's the central obstacle that stood between "digital file" and "digital money" for decades. Any proposed digital currency has to solve it, or it isn't really currency at all; it's just a copyable file with a dollar sign attached to it.

The Traditional Fix: A Trusted Third Party

Every digital payment system that predates blockchain solves double-spending the same way: by appointing a trusted central authority — a bank, a card network, a payment processor — to keep the one authoritative ledger. When you pay by card, your bank checks its own private records, confirms you actually have the money, deducts it, and credits the recipient's bank. The ledger only has one owner, so there's only ever one "true" balance to check against, and double-spending simply can't happen — not because of anything clever about the money itself, but because a single trusted party is watching every transaction and refusing to allow it twice.

This works, and it's how essentially all electronic payments still function today. But it comes with a real, structural cost: every transaction depends on that one trusted party actually being trustworthy, actually staying available, and actually being willing to process your transaction at all. Two people who don't know or trust each other, and don't want to depend on a bank, a government, or a company sitting between them, have no way to transact digitally without simply trusting someone.

ApproachWho Prevents Double-Spending?What You Must Trust
Physical cash Physics — a note can't be in two places at once Nothing (beyond the note itself being genuine)
Bank transfer / card payment A single trusted intermediary keeping the one real ledger The bank, the card network, and every system they depend on
Blockchain (Bitcoin, 2009–) A distributed network of participants who must independently agree on one shared ledger The math and the incentives, not any single party

Earlier Attempts, and Why They Fell Short

Bitcoin wasn't the first attempt at digital cash, and it's worth being honest about that rather than treating it as having appeared from nowhere. Several real, earlier cryptographic proposals tackled pieces of the same problem:

  • David Chaum's digital cash (1980s, commercialized as DigiCash in the 1990s) — pioneered genuinely anonymous, untraceable electronic payments using real cryptographic techniques. It still relied on a central issuer to prevent double-spending, though, so it hadn't removed the trusted-third-party problem — only made that party's job cryptographically more private.
  • Adam Back's Hashcash (1997) — a real proof-of-work scheme, originally built to fight email spam by making a sender do a small, verifiable amount of computational work per message. It wasn't a currency at all, but its core mechanism — "prove you did real, costly work" — is directly what Bitcoin's own mining later reused.
  • Wei Dai's b-money (1998) — a real proposal for a currency created through solved computational puzzles, without a central issuer, that Satoshi Nakamoto's own Bitcoin whitepaper directly cites.
  • Hal Finney's RPOW, "Reusable Proof of Work" (2004) — took Hashcash's own proof-of-work idea and made the resulting tokens actually transferable between people.
  • Nick Szabo's bit gold (2005) — another real proof-of-work-based proposal, explicitly aimed at creating scarce digital value without a central authority, but it never fully solved double-spending on its own and was never actually built as a working system.

Every one of these proposals contributed a real, genuine piece — anonymity, proof-of-work, scarcity, transferability — but none of them combined all the pieces into one working system that solved double-spending without a trusted central party. That synthesis is exactly what Bitcoin did.

Bitcoin: The First Working Solution

31 Oct 2008
A link to a whitepaper titled "Bitcoin: A Peer-to-Peer Electronic Cash System," authored under the pseudonym Satoshi Nakamoto, is posted to a cryptography mailing list.
3 Jan 2009
Nakamoto mines the very first block of the Bitcoin blockchain — the genesis block — and the network goes live.
Today
Satoshi Nakamoto's real identity has still never been confirmed. Genuinely nobody publicly knows — not "it's a mystery for dramatic effect," but a real, unresolved, still-open question in Bitcoin's own documented history.
The Real Innovation, Precisely Stated Nakamoto's paper didn't invent hashing or digital signatures or proof-of-work — all of that already existed. The genuine innovation was combining them into a system where a large, distributed network of mutually distrusting participants could independently reach agreement on a single, shared transaction history, entirely without a bank, a company, or any other single party anyone had to trust. Chapter 3 covers exactly how blocks and chains do this; Chapter 4 covers exactly how the network reaches that agreement (consensus) in the first place.

What a Blockchain Actually Is, at a High Level

Stripped of the mechanics this course builds up over the coming chapters, a blockchain is:

  • a distributed ledger — a record of transactions copied across many independent computers ("nodes") rather than stored in one central place;
  • that is append-only — new transactions can be added, but existing ones can't be secretly rewritten, because doing so would break a cryptographic chain of links back through every earlier block (Chapter 3);
  • where the participants agree on what's true not because they trust each other, but because of a costly, verifiable process (Chapter 4) that makes cheating more expensive than it's worth.

None of this requires anyone to trust a bank, a government, or a company. It requires trusting that a majority of the network is following the rules honestly — and, crucially, that the system's own incentives make honest behavior the profitable choice. That's a genuinely different kind of trust than "trust this one company," and it's the whole reason blockchain gets described as trustless or, more precisely, trust-minimized.

A Note on Scope for This Course This chapter deliberately stays at the conceptual level — the actual cryptography (hashing, digital signatures) is Chapter 2's job, and the actual block/chain/consensus mechanics are Chapters 3 and 4. Trying to explain how a blockchain works before explaining why anyone needed one in the first place tends to make the mechanics feel arbitrary rather than motivated — so this course deliberately starts with the problem, not the solution.

Hands-On Exercises

Three exercises reinforcing this chapter's own core distinction — trusted-third-party systems vs. trust-minimized ones — before any blockchain mechanics are introduced.

Exercise 1
List three real digital payment or messaging systems you use regularly (e.g. a bank app, an email provider, a card network). For each, name the single trusted party whose ledger or server is the one authoritative source of truth, and describe what would go wrong for you personally if that party became unavailable or dishonest.
Exercise 2
A friend says: "Bitcoin invented digital money." Using this chapter's own real precursor timeline (Chaum, Back, Dai, Finney, Szabo), write a short, accurate correction explaining what already existed before Bitcoin, and what Bitcoin's own genuine contribution actually was.
Exercise 3
Explain, in your own words, why a plain digital file (like a Word document representing "£10") cannot function as money on its own, and identify specifically which property of physical cash that file is missing.

Quick Reference

  • Double-spending — the risk that the same digital money is spent more than once, since digital data can be copied perfectly.
  • Trusted third party — the traditional fix: a single central authority (a bank, a processor) keeps the one authoritative ledger.
  • Real precursors — Chaum's digital cash (1980s), Back's Hashcash (1997), Dai's b-money (1998), Finney's RPOW (2004), Szabo's bit gold (2005) — each contributed a real piece, none combined them into a working, trust-minimized currency.
  • Bitcoin whitepaper — published 31 October 2008 by the pseudonymous Satoshi Nakamoto, whose real identity remains unconfirmed to this day.
  • Genesis block — mined 3 January 2009, the real moment the Bitcoin network went live.
  • Blockchain, at a glance — a distributed, append-only ledger that a network agrees on without needing to trust any single party.