Chapter 01

What crypto market participants should know

In October 2008, an anonymous cryptographer writing under the pseudonym Satoshi Nakamoto published a nine-page whitepaper titled "Bitcoin: A Peer-to-Peer Electronic Cash System". Released in the shadow of the global banking crisis, Bitcoin solved a computer science problem that had confounded researchers for over three decades: how to establish digital scarcity and trustless consensus among distributed participants without relying on a central authority or clearinghouse.

Today, Bitcoin has evolved into an institutional-grade macro asset, a global settlement network, and a sovereign reserve hedge. To monitor live on-chain metrics, halving models, and ETF capital flows, explore our dedicated Bitcoin Intelligence Desk and track macro reserve shifts on our policy analysis hub.

Chapter 02

The Core Triad: Network, Protocol, and Currency

To understand Bitcoin, one must distinguish between its three interlocking components: 1. The Bitcoin Protocol: The open-source code rules governing valid transactions, consensus mechanisms, and data serialization across the network. 2. The Bitcoin Network: The decentralized mesh of tens of thousands of independent full nodes and specialized miners communicating across peer-to-peer TCP/IP connections. 3. Bitcoin the Asset (BTC): The native scarce digital token created and transferred within the protocol, capped programmatically at 21 million units.

Chapter 03

How Transactions Function: The UTXO Model

Unlike conventional banking systems or account-based blockchains (like Ethereum) that maintain account balances similar to bank statements, Bitcoin utilizes the Unspent Transaction Output (UTXO) accounting model.

A Bitcoin wallet does not hold coins in the way a physical wallet holds banknotes. Instead, a wallet holds cryptographic private keys that grant spending authority over specific UTXOs recorded on the public ledger.

Transaction Structure: [Input UTXO #1 (0.8 BTC)] + [Input UTXO #2 (0.5 BTC)] | v [Output #1: Recipient Address (1.0 BTC)] + [Output #2: Change Address (0.299 BTC)] | Mining Fee = 0.001 BTC

When a user initiates a transaction: - The wallet selects one or more existing UTXOs whose sum meets or exceeds the desired payment amount. - The transaction inputs consume these UTXOs entirely. - New outputs are generated: one transferring the payment amount to the recipient's address, and one returning the remaining balance ("change") back to a newly generated address controlled by the sender. - The difference between total inputs and total outputs is collected by the miner as a transaction processing fee.

Every input must be unlocked with a valid digital signature generated using ECDSA (Elliptic Curve Digital Signature Algorithm) or Schnorr signatures (introduced via the Taproot upgrade).

Chapter 04

Proof-of-Work Consensus and Mining Economics

How does the network achieve consensus on the valid ordering of transactions without a central coordinator? Bitcoin employs Nakamoto Consensus powered by Proof-of-Work (PoW).

Miners worldwide aggregate unconfirmed transactions from the public mempool into candidate blocks. To append a candidate block to the blockchain, the miner's specialized ASIC hardware must solve a cryptographic puzzle: finding a 32-bit number (a "nonce") such that the double-SHA256 hash of the block header yields a value below the network's dynamically adjusted target difficulty.

Target Condition: SHA256(SHA256(Block_Header)) < Current_Target

The network automatically recalibrates this difficulty every 2,016 blocks (approximately every two weeks) to ensure that blocks are discovered at a predictable average cadence of one block every 10 minutes, regardless of how much computing power (hashrate) joins or departs the network.

Chapter 05

Absolute Scarcity: The Halving Schedule

Bitcoin's monetary policy is strictly algorithmic and unalterable without unanimous consensus among node operators. The protocol dictates that exactly 21,000,000 BTC will ever exist.

New supply enters circulation exclusively through the Block Subsidy awarded to the miner who successfully validates a new block. Every 210,000 blocks (roughly every four years), this subsidy is cut in half:

EraBlock Height RangeApproximate YearsSubsidy per BlockDaily Issuance
Genesis Era0 - 209,9992009 - 201250.00 BTC7,200 BTC
First Halving210,000 - 419,9992012 - 201625.00 BTC3,600 BTC
Second Halving420,000 - 629,9992016 - 202012.50 BTC1,800 BTC
Third Halving630,000 - 839,9992020 - 20246.25 BTC900 BTC
Fourth Halving840,000 - 1,049,9992024 - 20283.125 BTC450 BTC
Fifth Halving1,050,000 - 1,259,9992028 - 20321.5625 BTC225 BTC

By roughly the year 2140, block rewards will cease entirely, and miners will be compensated exclusively through transaction transaction fees paid by network users.

Chapter 06

Layer-2 Scaling: The Lightning Network & Liquid

Because Bitcoin's base layer deliberately caps block size to preserve decentralization (allowing ordinary personal computers to run full validating nodes), on-chain throughput is limited to approximately 7 transactions per second (TPS).

To support global retail velocity, the ecosystem has developed second-layer payment protocols: - The Lightning Network: A decentralized network of bidirectional payment channels operating off-chain. Transactions settle instantly with sub-penny fees while retaining base-layer cryptographic finality upon channel closure. - Sidechains (Liquid Network, Rootstock): Federated blockchains anchored to Bitcoin via two-way pegs, enabling confidential asset issuance and Turing-complete smart contracts.

For holding substantial Bitcoin positions, the industry gold standard remains self-custody via air-gapped hardware wallets with multi-signature governance.