Blockchain

A blockchain is a distributed, append-only ledger in which transaction records are grouped into cryptographically linked “blocks” and replicated across a peer-to-peer network of computers. No single entity controls the ledger; consensus protocols ensure all participants agree on its valid state. It is the foundational technology underlying cryptocurrency.


Conceptual Origins

The blockchain’s core idea — a public, community-verified ownership record requiring no central authority — has a surprisingly ancient parallel in the Yap rai stone money system of Micronesia (fischer-2019-yap-stone-money-cryptocurrency). Yap islanders maintained the “ledger” as oral history memorised by village chiefs and tracked communally. Ownership was publicly known; theft was pointless because no one would recognise stolen stone as valid.

Yap Oral LedgerBlockchain
Oral history of stone transfersChain of cryptographically signed transaction blocks
Village community verifies ownershipDistributed nodes verify and replicate the chain
No central bankDecentralised consensus
Transparent, public recordOpen ledger readable by anyone

Technical Structure

  1. Block — A batch of validated transactions plus a cryptographic hash of the previous block, a timestamp, and a nonce.
  2. Chain — Each block’s hash references the prior block, making the history tamper-evident: altering any block invalidates all subsequent blocks.
  3. Distributed network — The full chain is replicated across thousands of nodes. A valid “longest chain” wins under Bitcoin’s proof-of-work consensus.
  4. Cryptographic security — Wallet addresses and transaction signatures rely on elliptic curve cryptography (ECDLP-256).

Consensus Mechanisms

MechanismUsed byHow it works
Proof-of-work (PoW)bitcoinNodes compete to solve computationally hard puzzles; winner adds next block
Proof-of-stake (PoS)Ethereum (post-Merge)Validators stake coins as collateral; selected randomly weighted by stake

Applications Beyond Currency


Security Concerns

Criminal Exploitation

Blockchain’s pseudonymity and transaction irreversibility make cryptocurrency attractive for money laundering. In the $2.3M Tennessee laundering case, stolen funds were converted to Bitcoin through cryptocurrency kiosks, exploiting the difficulty of reversing or tracing crypto transactions.

Quantum Threat

Most blockchains use ECDLP-256 for transaction signatures. Future cryptographically relevant quantum computers (CRQCs) running Shor’s algorithm could break this — potentially with as few as 25,000–30,000 physical qubits given recent algorithmic advances (cottier-2026-quantum-computing-breakthroughs, babbush-neven-2026-quantum-vulnerabilities-cryptocurrency). Migration to PQC is the recommended mitigation.


Sources