Skip to main content

Ledger | Bitcoin Glossary | Mapping Bitcoin

Ledger

General

Also known as: distributed ledger, public ledger

A record of all transactions and account balances. Bitcoin's blockchain serves as a decentralized public ledger that is maintained by thousands of nodes worldwide, providing a transparent and verifiable history of all bitcoin transfers.

Overview

A ledger is fundamentally a system of record-keeping that tracks transactions and balances. In the context of Bitcoin, the blockchain serves as a distributed public ledger — a complete, transparent, and immutable history of every bitcoin transaction ever made, maintained simultaneously by thousands of nodes around the world.

How Bitcoin's Ledger Differs

Traditional ledgers are maintained by a single authority (a bank, a company, a government). Bitcoin's ledger is radically different in that no single entity controls it. Every participant who runs a full node holds an identical copy and independently verifies every entry.

Traditional Ledger          Bitcoin's Ledger
┌──────────────┐     ┌──────────┐ ┌──────────┐
│  Central     │     │  Node A  │ │  Node B  │
│  Authority   │     │ (copy)   │ │ (copy)   │
│  (single     │     └──────────┘ └──────────┘
│   copy)      │     ┌──────────┐ ┌──────────┐
└──────────────┘     │  Node C  │ │  Node D  │
                     │ (copy)   │ │ (copy)   │
                     └──────────┘ └──────────┘

UTXO Model vs. Account Model

Unlike a bank ledger that tracks account balances directly, Bitcoin's ledger uses the UTXO (Unspent Transaction Output) model. Rather than recording "Alice has 5 BTC," the ledger records a set of unspent outputs that Alice's keys can spend. The sum of those outputs is her effective balance.

Common Misconceptions

People sometimes assume the Bitcoin ledger contains names, addresses, or personal information. In fact, the ledger only records cryptographic identifiers (public key hashes), amounts, and spending conditions. It is pseudonymous, not anonymous, meaning transaction patterns can sometimes be analyzed to link identities.