btclyzer Bitcoin data analytics

The Bitcoin white paper, page by page

By btclyzer · Updated May 17, 2026 · 11 min read

Satoshi's 2008 white paper is nine pages long, has eight references, and changed money. It doesn't use the word "blockchain" once. It doesn't mention "wallet." It describes a payment network where the rule of consensus is settled by raw computation rather than trust — and lays out, in twelve numbered sections, every component the modern Bitcoin protocol still runs on. This walk-through goes through each section in order, in plain English, with the actual quotes that matter.

The cover page

The paper is titled "Bitcoin: A Peer-to-Peer Electronic Cash System." Author line: Satoshi Nakamoto · [email protected] · www.bitcoin.org. Posted October 31, 2008 to the metzdowd.com cryptography mailing list — a venue read by working cryptographers, not retail investors.

Note what the title doesn't say. Not "currency." Not "investment." Not "store of value." Not "blockchain." The framing is narrow: peer-to-peer electronic cash. Everything Bitcoin became — collateral, reserve asset, denomination — followed from this specific technical claim.

Abstract

The abstract is one paragraph, ten sentences. It states the entire thesis:

"A purely peer-to-peer version of electronic cash would allow online payments to be sent directly from one party to another without going through a financial institution. Digital signatures provide part of the solution, but the main benefits are lost if a trusted third party is still required to prevent double-spending. We propose a solution to the double-spending problem using a peer-to-peer network."

Bitcoin white paper, abstract (Satoshi Nakamoto, 2008)

Two things to notice. First, the problem stated is narrow: not "how do we replace banks" — only "how do we stop the same digital coin from being spent twice without a referee." Second, the proposed solution is announced before any mechanism is described: a peer-to-peer network in which transactions are timestamped by being hashed into a chain of proof-of-work, where the longest such chain is the agreed history, and where altering history requires re-doing the proof-of-work for every block after it.

The twelve sections, in order

Each numbered section is short — most are one or two pages of double-column LaTeX. Here is what each one actually says, with the load-bearing quotes preserved.

§ 1Introduction

Frames the trust problem with the existing banking and e-commerce systems: irreversible transactions are not really possible, reversal costs are passed to merchants, fraud is accepted as unavoidable, micropayments are infeasible because of fixed minimum-friction costs.

"What is needed is an electronic payment system based on cryptographic proof instead of trust, allowing any two willing parties to transact directly with each other without the need for a trusted third party."

The introduction does not promise to abolish banks. It promises a specific alternative for one specific failure mode — reversibility-dependent fraud — and leaves the rest of the financial system intact.

§ 2Transactions

Defines a Bitcoin as "a chain of digital signatures." Each owner transfers the coin by signing a hash of the previous transaction together with the public key of the next owner. Anyone can verify the chain.

But signatures alone don't stop the same coin from being signed over to two different recipients. Section 2 explicitly names the unsolved problem:

"The problem of course is the payee can't verify that one of the owners did not double-spend the coin. A common solution is to introduce a trusted central authority, or mint, that checks every transaction for double spending. […] We need a way for the payee to know that the previous owners did not sign any earlier transactions."

The rest of the paper is the construction of that way.

§ 3Timestamp Server

Borrows from Haber and Stornetta's 1991 work on cryptographic timestamping (one of the eight references). The idea: a timestamp server takes a hash of a block of items, publishes the hash, and each new block includes the previous block's hash. The result is a chain where every block proves the existence of every prior block at or before the time it was published.

This is the structural skeleton of the blockchain — though Satoshi never uses that word. The novelty isn't the chain itself; it's how the chain gets agreed upon, which is the next section.

§ 4Proof-of-Work

The central innovation of the paper. To add a block, miners must find a value whose hash, combined with the block header, begins with a target number of zero bits. Finding such a value is computationally expensive (brute-force search); verifying it is instantaneous.

"The proof-of-work involves scanning for a value that when hashed, such as with SHA-256, the hash begins with a number of zero bits. The average work required is exponential in the number of zero bits required and can be verified by executing a single hash."

This converts the abstract "longest chain" idea into something a network can actually defend. Whoever has the most computational power has the most influence over which chain becomes canonical. To rewrite history, an attacker would have to redo the proof-of-work of every block since the change — and keep up with new blocks being added by everyone else at the same time.

Section 4 also introduces difficulty adjustment in one sentence: "To compensate for increasing hardware speed and varying interest in running nodes over time, the proof-of-work difficulty is determined by a moving average targeting an average number of blocks per hour." That target became 10 minutes.

§ 5Network

Six operational steps describing exactly what a Bitcoin node does:

  1. New transactions are broadcast to all nodes.
  2. Each node collects new transactions into a block.
  3. Each node works on finding a proof-of-work for its block.
  4. When a node finds a proof-of-work, it broadcasts the block.
  5. Nodes accept the block only if all transactions in it are valid and not already spent.
  6. Nodes express their acceptance by working on creating the next block in the chain, using the hash of the accepted block as the previous hash.

Step 6 is the consensus mechanism. There is no vote, no quorum, no governance committee. A node "accepts" a block by building on top of it. The rule of consensus is: "always to consider the longest chain to be the correct one and […] keep working on extending it."

§ 6Incentive

Half a page. Establishes the entire economic model of Bitcoin.

"By convention, the first transaction in a block is a special transaction that starts a new coin owned by the creator of the block. This adds an incentive for nodes to support the network, and provides a way to initially distribute coins into circulation, since there is no central authority to issue them."

That sentence creates the block subsidy (now the largest component of miner revenue alongside fees), the issuance schedule, and the entire mining industry. The phrase "a way to initially distribute coins" is what eventually became the 21M supply cap — though the specific number doesn't appear in the paper at all. It was set in the source code.

Section 6 also addresses the game-theoretic question of why miners follow the rules:

"He ought to find it more profitable to play by the rules, such rules that favour him with more new coins than everyone else combined, than to undermine the system and the validity of his own wealth."

§ 7Reclaiming Disk Space

An engineering pragmatism note. Once a block's transactions are buried under enough later blocks, the spent transactions can be discarded to save disk space — provided the block's header (which depends on all transactions through a Merkle root) remains untouched.

This is where Satoshi introduces Merkle trees by reference (Merkle 1980 — another of the eight citations). The block header commits to a Merkle root of all transactions, so any transaction can be proven to be in a block without storing the rest of the block. This same property powers SPV in Section 8.

Satoshi estimates that with Moore's Law, the storage requirement "should not be a problem even if the block headers must be kept in memory."

§ 8Simplified Payment Verification

How a lightweight client (today: most mobile and hardware wallets) can verify a payment without running a full node.

"It is possible to verify payments without running a full network node. A user only needs to keep a copy of the block headers of the longest proof-of-work chain. […] He can't check the transaction for himself, but by linking it to a place in the chain, he can see that a network node has accepted it, and blocks added after it further confirm the network has accepted it."

SPV is the basis of how every modern mobile Bitcoin wallet works. It also frames why the "longest chain" rule matters so much — a light client can't verify transactions, only block headers, so the security of SPV is entirely the security of the chain selection rule.

§ 9Combining and Splitting Value

Explains how a transaction can have multiple inputs and multiple outputs — the basis of the UTXO model.

If Alice wants to send 1.5 BTC and she only has two outputs of 1 BTC each, she creates one transaction with both as inputs and two outputs: 1.5 BTC to the recipient, 0.5 BTC back to herself as change. No partial coins exist; transactions consume whole outputs and produce new ones.

This is also where Satoshi explicitly addresses the "fan-out" problem: he notes that the paper does not require keeping a per-coin history forever; only the unspent outputs need to be tracked. This is the conceptual origin of the UTXO set.

§ 10Privacy

Bitcoin's privacy model is honest about its limits. Identities are not directly linked to keys, but transactions are public.

"The traditional banking model achieves a level of privacy by limiting access to information to the parties involved and the trusted third party. The necessity to announce all transactions publicly precludes this method, but privacy can still be maintained by breaking the flow of information in another place: by keeping public keys anonymous."

Satoshi recommends using a fresh key pair for each transaction so the public log can't easily be linked back to a single owner. This works in practice less well than it sounds — modern chain-analytics firms cluster addresses heuristically — but the principle is still the basis of how good privacy hygiene looks in Bitcoin today.

§ 11Calculations

The most mathematical section. Computes the probability of a successful attack: an attacker generating an alternate chain faster than the honest network, then releasing it to reverse a confirmed transaction.

The model is a binomial random walk: each new block increases the honest chain's lead by 1 with probability p (honest fraction of hashrate) and decreases it by 1 with probability q (attacker fraction, where q < 0.5). Satoshi approximates this with a Poisson distribution.

The famous table in this section shows attacker success probability as a function of attacker hashrate and number of confirmations the victim has waited (z):

"q=0.1 z=5 P=0.0009137
q=0.1 z=6 P=0.0002428
q=0.1 z=10 P=0.0000012"

At 10% attacker hashrate, six confirmations drops success probability to ~0.024%. This is where the "wait 6 confirmations" convention comes from — it isn't arbitrary; it's the number in Satoshi's table where the probability of a double-spend by a sub-majority attacker becomes negligible.

§ 12Conclusion

Half a page summarising the construction. Worth reading in full because it preserves Satoshi's framing of what was actually new:

"We have proposed a system for electronic transactions without relying on trust. […] To solve this, we proposed a peer-to-peer network using proof-of-work to record a public history of transactions that quickly becomes computationally impractical for an attacker to change if honest nodes control a majority of CPU power."

The conclusion ends on the network's voluntary character: nodes can join and leave at will, and the longest-chain rule lets them re-synchronise without ceremony. "They vote with their CPU power, expressing their acceptance of valid blocks by working on extending them and rejecting invalid blocks by refusing to work on them." Eighteen years later, the protocol still works exactly that way.

The eight references

Citation lists usually aren't interesting. This one is. The eight papers Satoshi cites tell you what was already in the air in 2008 — the prior art that made Bitcoin possible without making it obvious.

What you don't see in the citation list is just as interesting. There is no reference to Hayek, no reference to Austrian economics, no reference to gold. The paper is a cryptography paper, not a monetary-policy manifesto. The political readings came later.

What the paper deliberately doesn't say

Reading the paper today, the omissions are as load-bearing as the inclusions:

Why it still matters

Most foundational technical papers age out of usefulness — the field moves on, the syntax changes, the references go stale. The Bitcoin white paper hasn't. Sixteen years later it is still the reference document for what Bitcoin is at the protocol level. Every node that runs Bitcoin Core today is implementing — with massive engineering refinement — the same twelve sections.

That stability is itself the point. Bitcoin's value proposition depends on the rules being predictable. The white paper is the canonical, public, dated commitment to those rules. As long as the protocol still corresponds to what's described in those nine pages, the network has a verifiable answer to the question "what did you originally promise?" — and seventeen years of operation behind the same answer.

Read it once. It really is only nine pages.

Early access · limited spots

Become a tester — get PRO free for life

btclyzer is pre-launch. The first testers who try it and send honest feedback keep PRO for life — no card, no catch.

See the live network in action

The protocol Satoshi described in 2008, running now — block by block. Live BUY / SELL / HODL ratings, on-chain mempool data, and the indicators that built up around it. Free, no signup.

Launch the dashboard →

FAQ

When was the Bitcoin white paper published?
Satoshi Nakamoto posted the white paper "Bitcoin: A Peer-to-Peer Electronic Cash System" to the cryptography mailing list at metzdowd.com on October 31, 2008. The Bitcoin software itself went live on January 3, 2009 with the genesis block.
How long is the Bitcoin white paper?
Nine pages, including the cover, abstract, twelve numbered sections and eight references. It is one of the most consequential and shortest foundational documents in computer science.
Does the white paper actually use the word "blockchain"?
No. Satoshi never uses the term blockchain in the white paper. The paper refers to a "chain of blocks" and a "block chain" (two words), but the modern single-word "blockchain" was a later coinage. The paper also does not use the word "wallet."
What problem does the white paper actually solve?
The double-spend problem without a trusted third party. Digital cash had been studied for decades, but every prior design required a central authority to prevent the same coin from being spent twice. The paper shows that proof-of-work plus a longest-chain rule lets a distributed network reach the same agreement no central authority could provide — without anyone having to trust anyone else.
What is the attacker formula in Section 11?
Section 11 (Calculations) computes the probability that an attacker with less than 50% of the network's hashrate could catch up after a victim has waited z confirmations. The model is a binomial random walk; Satoshi approximates it with a Poisson distribution. The headline result: at 10% attacker hashrate and z=6 confirmations, success probability drops below 0.024%. This is the origin of the "wait 6 confirmations" convention.
Is the white paper still relevant today?
Yes. Bitcoin's core consensus rules — proof-of-work, longest-valid-chain, fixed 21M supply, the incentive structure described in Section 6 — are unchanged since 2009. The white paper remains the canonical reference document for what Bitcoin is at the protocol level, even though the implementation has evolved (SegWit, Taproot, Schnorr signatures).