Blockchain
A blockchain is a distributed, append-only digital ledger in which records are grouped into cryptographically linked blocks and maintained across a peer-to-peer network without a central authority. It underpins cryptocurrencies such as Bitcoin and has been applied to supply-chain management, smart contracts, digital identity, and many other domains.
A blockchain is a distributed, append-only digital ledger that stores data in sequentially linked blocks, each secured by a cryptographic hash of its predecessor, making retrospective alteration computationally infeasible without network consensus. First described in its modern form by the pseudonymous author Satoshi Nakamoto in the 2008 white paper Bitcoin: A Peer-to-Peer Electronic Cash System, the technology became the foundation of Bitcoin and subsequently of a broad ecosystem of cryptocurrencies, smart contract platforms, and enterprise data systems.
History and origins
The conceptual groundwork for blockchain-style data structures was laid in 1991, when cryptographers Stuart Haber and W. Scott Stornetta described a method for time-stamping digital documents so they could not be back-dated. In 2008, Satoshi Nakamoto — an identity that remains unconfirmed as of 2025 — combined Haber and Stornetta's chaining idea with proof of work consensus and a peer-to-peer broadcast mechanism to solve the double-spending problem without a trusted intermediary. The Bitcoin network went live on 3 January 2009 with the mining of the genesis block, which embedded the newspaper headline "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks."
Ethereum, launched in 2015 by Vitalik Buterin and collaborators, generalised the concept by adding a Turing-complete scripting layer, enabling arbitrary smart contracts and decentralised applications (dApps) to run on-chain.
Technical architecture
Blocks and chains
Each block in a blockchain contains three principal components:
- A block header, which includes a timestamp, a nonce (an arbitrary number used during mining), the hash of the previous block, and a Merkle tree root summarising the block's transactions.
- A transaction list, enumerating the data or value transfers recorded in that block.
- A hash pointer to the preceding block, creating the chain structure from which the technology takes its name.
Because every block encodes the hash of its parent, altering any historical record would invalidate the hashes of all subsequent blocks, requiring the attacker to recompute the entire chain faster than the honest network — a task that grows prohibitively expensive as the chain lengthens.
Consensus mechanisms
Consensus mechanisms are the protocols by which distributed nodes agree on a single canonical version of the ledger.
Proof of Work
Proof of work (PoW) requires participating nodes (miners) to expend computational effort finding a nonce that produces a block hash below a target threshold. Bitcoin uses PoW with the SHA-256 hashing algorithm. The mechanism's security derives from the economic cost of computation, but it consumes substantial electrical energy, which has attracted environmental criticism.
Proof of Stake
Proof of stake (PoS) selects block validators pseudo-randomly, weighted by the amount of cryptocurrency they have staked (locked as collateral). Ethereum transitioned from PoW to PoS in September 2022 in an event known as The Merge, reducing the network's energy consumption by an estimated 99 percent, according to the Ethereum Foundation. Variants include delegated proof of stake (DPoS) and nominated proof of stake (NPoS).
Other mechanisms
Additional consensus approaches include proof of authority (PoA), used in permissioned enterprise blockchains; proof of history (PoH), used by Solana; and various Byzantine-fault-tolerant (BFT) algorithms employed in federated or consortium chains.
Permissionless vs. permissioned blockchains
Permissionless (or public) blockchains allow any party to read, write, or validate without prior authorisation. Bitcoin and Ethereum are the most prominent examples.
Permissioned (or private/consortium) blockchains restrict participation to vetted entities. Hyperledger Fabric, maintained by the Linux Foundation, is a widely deployed permissioned framework used in supply-chain and financial applications. Permissioned chains typically achieve higher transaction throughput and lower latency than public chains, at the cost of reduced decentralisation.
Applications
Cryptocurrencies
The original and most widespread blockchain application is digital currency. Bitcoin (BTC) remains the largest by market capitalisation, followed by Ether (ETH). Thousands of additional cryptocurrencies exist, each with distinct tokenomics and governance models.
Smart contracts and decentralised finance
Smart contracts are self-executing programs stored on a blockchain that automatically enforce agreement terms when predefined conditions are met. They underpin decentralised finance (DeFi) protocols — including decentralised exchanges, lending platforms, and stablecoins — as well as non-fungible token (NFT) marketplaces. The total value locked in DeFi protocols has fluctuated considerably; figures should be verified against current sources.
Supply-chain management
Blockchain provides immutable, auditable records of goods as they move through a supply chain. Pilots and deployments have been reported across food safety (where provenance tracking can accelerate contamination recalls), pharmaceutical serialisation, and luxury-goods authentication, though widespread enterprise adoption remains an area of active development and evaluation.
Digital identity and credentials
Self-sovereign identity (SSI) frameworks use blockchain to anchor cryptographic identifiers, allowing individuals to control and selectively disclose verified credentials without relying on a centralised registry.
Other applications
Additional domains under active research and deployment include voting systems, land registries, healthcare record interoperability, and central bank digital currencies (CBDC).
Scalability, limitations, and criticism
Public blockchains face a widely discussed blockchain trilemma, a term popularised by Vitalik Buterin, which posits that a system can optimise for at most two of three properties — decentralisation, security, and scalability — simultaneously.
Key limitations include:
- Throughput: Bitcoin processes roughly 7 transactions per second (tps) at the base layer; Ethereum's base layer historically handled 15–30 tps. By contrast, centralised payment processors can handle tens of thousands of tps.
- Finality latency: Probabilistic finality in PoW chains means transactions are not truly irreversible until buried under several subsequent blocks.
- Energy consumption: Bitcoin's annualised energy use has been compared to that of mid-sized countries, though estimates vary and are contested.
- Regulatory uncertainty: The legal status of cryptocurrencies and token offerings differs by jurisdiction and continues to evolve.
Layer-2 scaling solutions — including the Lightning Network for Bitcoin and optimistic and zero-knowledge rollups for Ethereum — aim to increase effective throughput by processing transactions off-chain and settling proofs or summaries on the main chain.
Governance
Blockchain governance encompasses both on-chain mechanisms (voting by token holders encoded in protocol rules) and off-chain processes (developer mailing lists, improvement proposals such as Bitcoin Improvement Proposals (BIPs) and Ethereum Improvement Proposals (EIPs), and foundation governance). Governance disputes have led to notable chain splits, or forks, including the creation of Bitcoin Cash from Bitcoin in 2017 and Ethereum Classic from Ethereum following the 2016 DAO hack.
Frequently asked questions
Is blockchain the same as Bitcoin?
No. Blockchain is the underlying data-structure and consensus technology; Bitcoin is one specific application that uses a blockchain as its ledger. Many other cryptocurrencies and non-financial systems also use blockchain architectures.
Is a blockchain truly immutable?
In practice, a sufficiently long public blockchain is computationally infeasible to alter without controlling a majority of the network's hashing or staking power. Short chains or smaller networks are more vulnerable to 51 percent attacks, several of which have been observed on minor proof-of-work coins.
Is blockchain data private?
Public blockchains are pseudonymous rather than anonymous: transaction data is visible to anyone, but wallet addresses are not inherently linked to real-world identities. Permissioned blockchains and privacy-focused protocols (such as those using zero-knowledge proofs) can offer stronger confidentiality.
Is blockchain technology regulated?
Regulation varies significantly by jurisdiction and is an area of active legislative and administrative activity as of 2025. Some countries have enacted comprehensive crypto-asset frameworks (notably the European Union's MiCA regulation, which entered into force in 2023), while others have banned or severely restricted cryptocurrency use.
Is blockchain suitable for every use case that requires a database?
No. Blockchain is most appropriate when multiple mutually distrusting parties need to share a common record without a trusted central intermediary. For use cases where a single organisation controls all participants, a conventional database typically offers superior performance, simpler administration, and lower cost.