Your First Mental Model
Hook
Phones train us to think money lives “in the app.” Bitcoin works more like a shared public notebook: the coins are lines in that notebook, and keys are what let you add a valid new line.
One idea
Bitcoin’s mental model is a shared ledger everyone can verify; spending means authorizing a change to that ledger with keys—not emailing coin files from one phone folder to another.
Plain walkthrough
The shared ledger. Bitcoin keeps a public history of transfers, grouped into blocks and linked into a chain (the blockchain—a nickname for that shared public ledger). Anyone can download software that checks the history against the rules. Your balance is not a private number a company stores for you (unless you use a custodian). On the open network, “what you can spend” is whatever the ledger says your keys control.
Keys move coins—not files. A private key is secret data that can sign (authorize) a spend. A public side of that cryptography lets others send bitcoin to destinations your wallet creates (addresses). When you “send bitcoin,” you are not attaching a file to a message. You are broadcasting a transaction: a statement the network can check—“these coins, which only this key could unlock, are now locked for someone else.” Wallets hide the math; the model stays the same.
Why the file picture fails. If bitcoin were files in an app:
- Copying the file would duplicate money.
- Deleting the app would delete the money.
- Emailing the file would be “sending.”
None of that matches Bitcoin. Copying a wallet backup does not mint new coins; it copies the keys that control the same ledger entries (which is why backups are powerful and dangerous). Deleting an app often leaves coins untouched if you still have the seed or keys. Sending is ledger update + network acceptance, not a file transfer.
Coins as spendable pieces (preview, not jargon dump). Under the hood, what wallets show as one “balance” is usually several separate spendable chunks recorded on the ledger. Later you will meet the name UTXO (unspent transaction output)—think “a coin in your pocket” among several coins that add up to what the app labels as your total. You do not need that vocabulary to use a wallet on day one. You do need this intuition: the app sums pieces the network recognizes; it does not store a single piggy-bank file.
Where wallets fit. A wallet is keys plus a friendly interface (Chapter 6). It reads the ledger (or asks servers that do), crafts transactions, and stores secrets carefully. Custodial apps may show a balance while they hold the keys—an IOU in their database. Self-custody means your keys authorize spends on the shared ledger. Same word “wallet,” different trust model.
Confirmations, briefly. After you broadcast a transaction, it waits to be included in a block. Each block that builds on top adds confidence that the transfer will stick. Instant bank-card habits do not map one-to-one; Chapter 9 and 13 unpack waiting without turning it into fear.
A short metaphor, after the mechanism: picture a town bulletin board everyone can photograph and check. Paying someone means posting a signed note that moves a chalk mark from your name to theirs—not handing them a secret USB stick full of coin images.
Watch-outs
- “It’s in my phone” — The phone holds keys (or access to a custodian). The spendable bitcoin are ledger entries.
- Backup = keys, not a second pile of coins — A seed phrase recreates keys that control the same coins. Anyone with the seed can spend them—treat it like the keys to a vault, not like a PDF of money.
- Balance UI vs pieces — Seeing one number is fine; just know the network tracks separate spendable outputs that a later chapter (UTXOs) will name.
- Servers can lie; the model still helps — Light wallets may trust a server for convenience. The ideal remains “verify against the ledger”; practical paths appear as you learn.
- Still not financial advice — A clearer mental model is not a recommendation to acquire bitcoin.
You now can…
- Picture Bitcoin as a shared ledger plus keys that authorize spends.
- Reject the “coin files in the app” story without needing deep cryptography.
- Carry a light preview of “balance = pile of coins” into wallets and later UTXO chapters.
What next?
Ebook: continue to Ch 6