GEN-002
Blockchain
/ˈblɒk.tʃeɪn/ · also: block chain, distributed ledger
noun · Core Concept · Foundational
CoreFoundational
1. A continuously growing list of records, called blocks, which are linked and secured using cryptographic hashes. Each block contains a cryptographic hash of the previous block, a timestamp, and transaction data — forming an immutable, append-only ledger distributed across a peer-to-peer network.
2. The foundational data structure underlying Bitcoin and most subsequent cryptocurrency networks. A blockchain achieves consensus among untrusted parties without a central authority by requiring network participants to validate and agree on the state of the ledger through a defined consensus mechanism.
TECHNICAL NOTE: Each block header contains: (1) the hash of the previous block header, (2) a Merkle root of all transactions in the block, (3) a timestamp, (4) a difficulty target, and (5) a nonce. The chaining of hashes creates tamper-evidence — altering any historical block invalidates all subsequent blocks.
ETYMOLOGY: The term "blockchain" as a single compound word was not used in Satoshi Nakamoto's original 2008 Bitcoin whitepaper, which referred to "a chain of blocks." The compound form emerged organically in the developer community circa 2011–2012.
See also: Distributed Ledger Technology · Merkle Tree · Consensus Mechanism · Satoshi Nakamoto