Blockchain

Noun · Development · Origin: 2008

Definitions

  1. A blockchain is a distributed, append-only digital ledger that records transactions across a peer-to-peer network without a central authority. Each block contains a batch of transactions, a timestamp, and a cryptographic hash of the previous block, forming an immutable chain. Consensus mechanisms like Proof of Work (Bitcoin) or Proof of Stake (Ethereum) ensure all participants agree on the ledger's state without trusting each other. Beyond cryptocurrency, blockchains power smart contracts (self-executing code on-chain), decentralized finance (DeFi), NFTs, and supply chain tracking. Tradeoffs include limited throughput compared to centralized databases, high energy consumption for PoW chains, and the reality that most business use cases do not require decentralized trust.

    In plain English: A shared digital record book that everyone can read but nobody can alter — entries are permanent and verified by the whole network instead of one authority.

  2. As a data structure, a blockchain is simply a linked list where each node contains a cryptographic hash of the previous node, making the chain tamper-evident. The innovation isn't the data structure — it's the consensus mechanism that lets untrusted parties agree on its contents.

    Example: 'Strip away the hype and a blockchain is just a hash-linked list with a consensus protocol. The question is whether your use case actually needs decentralized consensus.'

    Source: data structure perspective

Origin Story

A pseudonymous whitepaper that launched a trillion-dollar industry

On October 31, 2008 — Halloween — an entity called **Satoshi Nakamoto** published a whitepaper titled *"Bitcoin: A Peer-to-Peer Electronic Cash System"* to a cryptography mailing list. The paper described a system where transactions were grouped into **blocks**, each cryptographically linked to the previous one, forming a **chain**. This structure made the ledger tamper-evident: altering any block would invalidate every subsequent block.

Nakamoto's innovation wasn't any single technique — hash functions, Merkle trees, and distributed consensus had all been explored before. The breakthrough was combining them into a working system with the right economic incentives (mining rewards) to keep it running without central authority.

The word "blockchain" itself doesn't appear in the original whitepaper. Nakamoto used "chain of blocks." The single compound word emerged in community usage and was popularized around 2014-2016 when enterprises began exploring the technology for non-cryptocurrency applications. Satoshi Nakamoto's true identity remains unknown.

Coined by: Satoshi Nakamoto (concept); community coined compound word

Context: Cryptography mailing list, October 31, 2008

Fun fact: The first Bitcoin block (the 'genesis block') contains a hidden message: the headline from The Times on January 3, 2009: 'Chancellor on brink of second bailout for banks.' It's widely interpreted as a political statement about the financial system Bitcoin was designed to replace.

Related Terms