Modules / Bitcoin: The First Cryptocurrency

Bitcoin: The First Cryptocurrency

Understand what Bitcoin is, the problem it solves, and why it matters to financial institutions — without the hype.

beginner 18 min read blockchainminingconsensus

The Problem Bitcoin Was Designed to Solve

Before Bitcoin, transferring value digitally required a trusted intermediary — your bank, Visa, PayPal. You can’t email a dollar bill; you can only email an instruction to a bank that then updates ledgers on both ends. This creates three problems:

  1. Counterparty risk — you trust the intermediary to be honest and solvent
  2. Censorship — the intermediary can block, freeze, or reverse transactions
  3. Cost — cross-border transfers can take days and cost 5-10%

In January 2009, an anonymous person (or group) called Satoshi Nakamoto launched Bitcoin with a radical proposition: what if a distributed network of computers could maintain a shared ledger, with no single point of control, that anyone could verify?

MBA context: Think of Bitcoin as a trust minimization technology. In traditional finance, you pay for trust (bank fees, settlement delays, counterparty risk management). Bitcoin replaces institutional trust with mathematical proof. The question for financial institutions is not whether this is theoretically interesting — it’s whether the tradeoffs (speed, energy, volatility) are worth it for specific use cases.

How Bitcoin Actually Works

The Blockchain: A Shared Ledger

Bitcoin’s ledger is a blockchain — a chain of data blocks, each containing a batch of transactions and a cryptographic link (hash) to the previous block. Every full node (computer running Bitcoin software) holds a complete copy.

When you send bitcoin, you broadcast a transaction to the network. Nodes verify it against the ledger — do you actually have what you’re trying to spend? — and valid transactions enter a waiting pool called the mempool.

Mining and Proof of Work

Miners are specialized computers that compete to add the next block. To do so, they must solve a computationally expensive puzzle: find a number (called a nonce) that, when included in the block header, produces a hash below a target value. This is brute-force trial-and-error — there’s no shortcut.

This is called Proof of Work (PoW). The key insight: solving the puzzle costs real resources (electricity), but verifying a correct solution is trivially cheap. This asymmetry is what makes the ledger tamper-resistant. To rewrite history, an attacker would need to redo all the computational work for every subsequent block faster than the rest of the network adds new ones — economically infeasible at scale.

The miner who solves the puzzle first gets to add the block and earns:

  • The block reward (newly created bitcoin, currently 3.125 BTC, halved every ~4 years)
  • Transaction fees from all transactions in the block

Supply: Programmatic Scarcity

Bitcoin has a hard cap of 21 million coins. The emission schedule is fixed in code — the block reward halves approximately every 4 years (“the halving”). The last bitcoin will be mined around 2140.

For finance students: This is the antithesis of central bank monetary policy. No Fed, no discretion, no quantitative easing. Bitcoin’s monetary policy is determined by math, visible to everyone, and unchangeable. Whether this is a feature or a bug depends entirely on your view of central banking.

Wallets and Keys

A Bitcoin “wallet” doesn’t store bitcoin — it stores cryptographic keys.

  • Private key: A 256-bit secret number. Whoever controls the private key controls the bitcoin associated with its address. Never share this.
  • Public key: Derived mathematically from the private key. Used to create your Bitcoin address.
  • Address: A hashed version of your public key. What you share with others to receive funds (like an account number).

Transactions are signed with the private key, proving ownership without revealing the key itself (public-key cryptography, the same math behind HTTPS).

UTXOs: How Bitcoin Tracks Balances

Bitcoin doesn’t use account balances. Instead it uses Unspent Transaction Outputs (UTXOs) — specific chunks of bitcoin from previous transactions that haven’t been spent yet.

Analogy: Think of your “bitcoin balance” not as a single number in an account, but as a pile of physical dollar bills of various denominations you’ve received over time. When you spend, you pick specific bills, hand them all to the network, and get change back. This design has important implications for privacy and efficiency.

Bitcoin as an Asset Class

By 2026, Bitcoin has achieved institutional recognition:

  • ETFs: US spot Bitcoin ETFs (launched Jan 2024) allow pension funds and wealth managers to gain exposure without custody complexity. BlackRock’s IBIT became one of the fastest-growing ETFs in history.
  • Corporate treasuries: MicroStrategy holds >200,000 BTC. Several public companies now hold bitcoin as a reserve asset.
  • Sovereign adoption: El Salvador made Bitcoin legal tender in 2021.

The Volatility Problem

Bitcoin’s volatility remains its primary barrier to monetary function. A currency that can drop 50% in months is hard to use for pricing and contracts. Most institutional frameworks treat bitcoin as a speculative asset or “digital gold” (store of value) rather than a medium of exchange.

Key question for FIs: The interesting question is not “is Bitcoin a currency?” but “what problem does Bitcoin solve better than existing solutions?” For cross-border settlement, censorship-resistant transactions, or an inflation hedge in certain geographies — the answer may be yes. For your morning coffee, probably not yet.

What Banks and Financial Institutions Are Actually Doing

  1. Custody services: BNY Mellon, State Street, Fidelity now offer institutional bitcoin custody. This is picking up the physical gold bars problem: where do large holders safely store private keys?

  2. Trading and prime brokerage: Goldman Sachs, JPMorgan, and others now offer OTC bitcoin derivatives and ETF trading for institutional clients.

  3. Settlement experiments: Some central banks and large banks are exploring whether blockchain-based settlement could reduce the T+2 settlement cycle.

  4. The Lightning Network: A Layer 2 protocol on top of Bitcoin designed for fast, cheap micropayments. Relevant for cross-border remittances but still early-stage adoption.

Key Takeaways

  • Bitcoin solved the double-spend problem without a central authority, using cryptographic proof + economic incentives (mining)
  • Its 21 million cap and fixed emission make it fundamentally different from fiat money
  • Institutional adoption (ETFs, custody, derivatives) has matured significantly since 2020
  • For financial institutions, Bitcoin is most relevant today as: a custody/trading business opportunity, a potential settlement rail, and a benchmark for broader crypto asset considerations
  • Volatility and energy consumption remain the primary objections from traditional finance

Next: Blockchain: How the Ledger Works — we’ll go deeper on how the data structure, consensus mechanisms, and different chain architectures work.