Skip to content

Part 12 · Bitcoin in Context

By the time you reach Satoshi’s Synthesis you understand why Bitcoin exists: it is a machine for letting mutually distrusting strangers agree on one ledger, without a referee, by making influence cost real energy. But Bitcoin is no longer the only such machine. Two other systems — Ethereum and Solana — are the most-used alternatives, and the fastest way to really understand Bitcoin is to see what it deliberately gave up, by studying systems that made the opposite choice. This part is that comparison, done from first principles.

This is not a “which coin should I buy” part, and it is not a tour of price charts. It asks one engineering question of every chain:

What problem is this design actually solving, and what does that solution cost?

Every choice a blockchain makes — UTXOs vs accounts, no-loops vs a full virtual machine, Proof of Work vs Proof of Stake, one node on a Raspberry Pi vs a datacenter validator — is a trade. Nothing is free. Bitcoin’s conservatism buys it credible neutrality and brutal verifiability at the cost of expressiveness and speed. Ethereum buys programmability at the cost of a far larger surface area to get right. Solana buys raw throughput at the cost of who, in practice, can afford to run the network. Seeing those trades side by side is what turns “Bitcoin is the original” into “here is exactly why Bitcoin is built the way it is.

The pages build the comparison one design axis at a time, then zoom out:

  1. UTXO vs the Account Model (Ethereum) — Bitcoin’s stateless pile of coins vs Ethereum’s global map of balances, nonces, and contract state; what each makes easy and what each makes hard (parallelism, privacy, double-spend checks).
  2. Smart Contracts & the EVM — what the Ethereum Virtual Machine does that Bitcoin Script deliberately won’t, how gas turns the halting problem into an economic one, and the real cost of Turing-completeness.
  3. Proof of Stake & The Merge — Ethereum’s switch from Proof of Work to Proof of Stake on 15 September 2022, what validators and slashing replace mining with, and the honest security-model debate that followed.
  4. Solana’s Architecture — Proof of History, Sealevel parallel execution, and Gulf Stream; why Solana is fast and cheap, and why that speed has cost it hardware centralization and a real history of network outages.
  5. Fees, Throughput & Blockspace — why every chain sells the same scarce thing (space in the next block) and why fee markets look so different across the three.
  6. The 2024 Cycle — the era’s defining events read through this lens, dated and hedged.
  7. The L2 and Scaling Frontier — rollups, sidechains, and Lightning as the shared answer to “the base layer can’t do everything.”
  8. Why Three Chains Exist — the payoff: a single picture of which problem each chain is the best-known answer to, and why no one design wins on every axis.

Why compare from first principles, not from features

Section titled “Why compare from first principles, not from features”

Marketing compares chains by feature lists — TPS numbers, “smart contracts: yes/no,” fees in cents. Those are downstream symptoms. The causes are a handful of foundational choices that this book has already taught you to reason about:

FOUNDATIONAL CHOICE DOWNSTREAM SYMPTOM YOU'LL HEAR ABOUT
─────────────────────────────────────────────────────────────────
state model (coin vs account) → privacy, parallelism, "balance" UX
script power (bounded vs full) → "can it run DeFi?", smart-contract risk
Sybil cost (energy vs capital) → energy debate, who secures the chain
node requirements (cheap vs not) → how decentralized it really is
block cadence & finality → how fast/final a payment feels

If you understand the left column, the right column stops being magic. That is the whole bet of this part: the same first principles that explain Bitcoin also explain — and price — its rivals.

The recurring question, applied to the whole field

Section titled “The recurring question, applied to the whole field”

This book’s thread has been: how do untrusting strangers agree on one ledger? Bitcoin’s answer is one point in a design space. Ethereum and Solana are other points — they keep the goal (one shared, verifiable ledger no single party controls) but move the dials on how much the ledger can do, how influence over it is rationed, and who can afford to check it. Every page that follows is really asking the same question Satoshi asked, with the dials set differently — and measuring what that costs. Start with the most fundamental dial of all: how the ledger represents a coin, in UTXO vs the Account Model →