Key Takeaways
- A blockchain is a shared, tamper-resistant digital ledger that records data in cryptographically linked blocks, replicated across thousands of independent computers.
- No single company, government, or person controls a public blockchain the rules are enforced by code and collectively upheld by the network.
- Bitcoin (2009) was the first blockchain; Ethereum (2015) was the first to make it programmable, opening the door to smart contracts, digital identity, and much more.
- There are three main types: public blockchain (open to anyone), private blockchain (controlled by one organisation), and consortium blockchain (governed jointly by a defined group).
- The EU’s MiCA regulation (Regulation (EU) 2023/1114) is the world’s most comprehensive legal framework for blockchain based financial products making Europe a defining market for the technology right now.
What is Blockchain?
Imagine a notebook that thousands of people hold a copy of simultaneously. Every time someone adds a new page, every copy updates at the same instant. No one can secretly alter an old page, because everyone else’s copy would immediately contradict it. That is, in essence, what blockchain is.
More precisely: a blockchain is a distributed ledger in which data is grouped into timestamped blocks, each cryptographically linked to the one before it, and replicated across a network of independent nodes without any central authority in control.
The key ideas are straightforward. Distributed means many computers hold the same copy of the data, rather than one central server. Append-only means new data can be added but old data cannot be deleted or changed, this is what cryptographers call immutability. Cryptographically linked means each block contains a unique hash of the block before it, so tampering with history is mathematically detectable.
The result is a record-keeping system that is extraordinarily hard to falsify, impossible to shut down by attacking a single point, and verifiable by anyone without needing to trust a central institution.
New to the terminology? Our Blockchain Glossary covers every term in this article in depth, 321 definitions with real-world examples.
How Does Blockchain Work?
Understanding blockchain comes down to two things: what a block contains, and how blocks connect to form a chain.
What Is Inside a Block?
Every block has two parts. The block header contains metadata about the block itself. The block body contains the actual data, most commonly a list of transactions.
Inside the header, the most important field is the previous block hash. A hash is a short digital fingerprint, with a fixed length string produced by a cryptographic hash function such as SHA-256. Change even one character in the original data, and the entire hash output changes completely. The previous block hash is the fingerprint of the block immediately before this one.
The header also contains:
- A timestamp is when the block was created
- A nonce is a number used in the mining process to satisfy the network’s difficulty target
- A Merkle root is a single hash summarising every transaction in the body, invented by cryptographer Ralph Merkle in 1979

How Do Blocks Form a Chain?
Because every block’s header contains the hash of the block before it, the blocks are mathematically locked together in order. If someone tried to alter a transaction in block 4,820, that block’s hash would change, but block 4,821 contains the old hash in its header, and so does every node’s copy of the chain. That mismatch would be immediately visible to the entire network.
To successfully rewrite history, an attacker would need to recalculate every block after the tampered one across thousands of independent computers simultaneously, faster than the honest network continues adding new blocks. On large public blockchains like Bitcoin and Ethereum, this is computationally and economically impossible to change of a block property known as immutability.

Who Validates and Adds New Blocks?
This is the role of consensus mechanisms the rule sets by which a distributed network agrees on a single shared truth without a central coordinator. The two most widely deployed are:
Proof of Work (PoW) is used by Bitcoin. Computers called miners compete to solve a computationally intensive puzzle. The first to solve it earns the right to add the next block and collects a block reward. The effort required is precisely what makes fraud expensive: to cheat, an attacker must outpace the entire honest network. Bitcoin’s total hash rate exceeded 700 exahashes per second in 2025.
Proof of Stake (PoS) is used by Ethereum since its September 2022 ‘Merge’ upgrade. Participants called validators lock up (stake) the native currency as collateral. The network selects validators proportionally to how much they have staked. Dishonest behaviour results in automatic forfeiture of part of that stake, it’s s a penalty called slashing. Ethereum’s switch reduced its energy consumption by an estimated 99.95% compared to Proof of Work, according to the Ethereum Foundation.
In both cases, the network reaches finality , this is a shared agreement on the true state of the ledger, without anyone in charge.
The Three Types of Blockchain
Not all blockchains are built the same way. They differ primarily on one question: who is allowed to participate?

Public Blockchain
A public blockchain (also called a permissionless blockchain) is open to anyone. Anyone can read the data, send transactions, and, depending on the consensus mechanism , participate in validating. Bitcoin and Ethereum are the two most well-known examples.
Public blockchains are the most decentralised and transparent form of the technology, but also the slowest and hardest to govern, because no single party can make decisions for the network.
Private Blockchain
A private blockchain is controlled by a single organisation. Only invited participants can join, and the controlling organisation sets and enforces the rules. Private blockchains are faster and easier to manage, but users must ultimately trust the controlling entity, which undermines some of blockchain’s core value proposition.
Examples include J.P. Morgan’s Quorum (now ConsenSys Quorum) and certain Hyperledger Fabric deployments used for internal enterprise record-keeping.
Consortium Blockchain
A consortium blockchain (also called a permissioned blockchain or federated blockchain) sits between the two. A defined group of organisations jointly govern the chain. No single member controls it, but membership is not open to the public.
The we.trade platform, used by European banks including ING and Deutsche Bank, was an early example built on Hyperledger Fabric. Consortium blockchains are the most common form found in enterprise and institutional settings, including early implementations under the EU’s DLT Pilot Regime.
The History of Blockchain
The Foundations (1976–2007)
Blockchain did not begin with Bitcoin. The foundational cryptographic building blocks were developed across decades:
- 1976 – Whitfield Diffie and Martin Hellman published New Directions in Cryptography, introducing public-key cryptography
- 1979 – Ralph Merkle patented the Merkle tree data structure that sits at the heart of every blockchain block
- 1991 – Stuart Haber and W. Scott Stornetta described cryptographically timestamped document chains in How to Time-Stamp a Digital Document
Bitcoin assembled these existing tools into something new: a system for reaching distributed consensus without a trusted third party in solving a problem computer scientists had formalised in 1982 as the Byzantine Generals’ Problem.
Satoshi Nakamoto and Bitcoin (2008–2009)
On 31 October 2008, an anonymous individual or group using the name Satoshi Nakamoto published a nine-page whitepaper: Bitcoin: A Peer-to-Peer Electronic Cash System. It described a system for moving value between strangers across the internet without a bank in the middle.
Bitcoin’s genesis block is block zero it was mined on 3 January 2009. Nakamoto embedded a newspaper headline inside it: “The Times 03/Jan/2009 Chancellor on brink of second bailout for banks” it widely read as a statement of purpose. The first real-world Bitcoin transaction followed on 12 January 2009 (10 BTC to developer Hal Finney). On 22 May 2010, programmer Laszlo Hanyecz paid 10,000 BTC for two pizzas,it was the first time Bitcoin was used to purchase a physical good. This date is still celebrated as Bitcoin Pizza Day every year.
Ethereum and the Programmable Blockchain (2013–2015)
In 2013, Vitalik Buterin published a whitepaper proposing Ethereum: a blockchain that would not only record transactions but also run arbitrary code on smart contracts to automatically execute agreements and function without a central operator.
Ethereum launched in July 2015. Where Bitcoin was a decentralised currency, Ethereum was a decentralised computer. Developers could build any application whose logic could be expressed in code: lending protocols, digital marketplaces, identity systems, supply chain tools. The Ethereum Virtual Machine (EVM) became the runtime environment for this programmable logic, and it has since been adopted by dozens of other blockchain networks.
The Enterprise Era (2016–2020)
The Linux Foundation launched Hyperledger in 2016, backed by IBM, Intel, and J.P. Morgan, to build enterprise-grade permissioned blockchain frameworks. R3 developed Corda for interbank settlement. IBM Food Trust used Hyperledger Fabric to allow Walmart to trace the origin of produce from farm to shelf in seconds rather than days. El Salvador made Bitcoin legal tender in September 2021, becoming the first country to do so.
Ethereum’s September 2022 ‘Merge’ upgrade to its transition from Proof of Work to Proof of Stake and was among the most complex technical migrations ever executed on a live network, completed without downtime and covering hundreds of billions of dollars in assets.
Regulation and Maturity (2023–Present)
The EU’s Markets in Crypto-Assets regulation (MiCA) (Regulation (EU) 2023/1114) came fully into force on 30 December 2024 — establishing the world’s most comprehensive legal framework for blockchain-based financial products. It created clear rules for stablecoin issuers, crypto-asset service providers, and the licences required to operate in the European Economic Area.
Bybit secured a MiCA licence from Austria’s Financial Market Authority (FMA) in 2025. Dutch company Quantoz Payments received Electronic Money Institution authorisation from De Nederlandsche Bank (DNB) for its MiCA-compliant stablecoins EURQ and USDQ. For a detailed breakdown of what this means in practice, read our MiCA stablecoin transition guide.
Real-World Applications
Financial Services and Payments
Ripple‘s XRP Ledger and Stellar are used for cross-border payment settlement between banks and remittance companies, reducing processing time from days to seconds and cost from percentage fees to fractions of a cent. Under MiCA, stablecoins like EURQ and EURC enable regulated digital payments across the EU on public blockchain rails.
Supply Chain and Trade Finance
De Beers’ Tracr platform uses blockchain to track diamonds from mine to retail, allowing buyers to verify ethical sourcing and prevent conflict diamonds entering the supply chain. The EU’s DLT Pilot Regime has enabled early tests of blockchain-based bond issuance and settlement by regulated institutions.
Digital Identity
The W3C’s Decentralised Identifier (DID) standard allows individuals and organisations to hold verifiable digital credentials for qualifications, permits, identity attributes and are checkable by anyone without contacting the original issuer. Estonia’s e-Residency programme and the EU’s eIDAS 2.0 framework are both moving toward this model.
See also: our full explainer on Decentralised Identifiers (DIDs) and Self-Sovereign Identity (SSI)
Education and Credentialing
Universities in the Netherlands, the UK, and across Africa are piloting blockchainissued diplomas that cannot be forged to directly addressing a problem endemic to regions where document fraud is common.
Energy and Sustainability
Energy Web is a blockchain platform allowing renewable energy certificates to be issued, tracked, and retired on a public ledger, giving buyers verifiable proof that the electricity they purchase is genuinely green.
Blockchain in Europe and Africa
Europe is currently the most consequential regulatory market for blockchain technology in the world. MiCA‘s single-market passport allows a blockchain-based financial product licensed in one EU member state to operate across all 27 members making the European Economic Area uniquely attractive for building compliant, scalable blockchain infrastructure. The Netherlands, France, Germany, and Austria have become registration hubs for the first wave of fully licensed blockchain businesses.
Africa presents a different but equally significant picture. Nigeria, Kenya, and Ghana rank consistently among the world’s top countries by blockchain adoption relative to population, driven by practical need: remittance costs into sub-Saharan Africa average over 8% per transaction through traditional channels (World Bank remittance data), inflation has eroded local currency savings in several markets, and large proportions of the adult population remain unbanked. Blockchain offers parallel financial infrastructure requiring only a smartphone and an internet connection to access.
Frequently Asked Questions
Is blockchain the same as Bitcoin?
No. Bitcoin is an application built on a blockchain. Blockchain is the underlying technology is the shared distributed ledger architecture. Thousands of different blockchains exist, most of which have nothing to do with Bitcoin. Ethereum, Solana, Polkadot, and Hyperledger Fabric are all blockchains, each designed for different purposes.
Is blockchain secure?
Public blockchains like Bitcoin and Ethereum have never been successfully attacked at the protocol level. Security risks come from the applications built on top of a smart contract bugs, phishing attacks, exchange hacks but not from the blockchain architecture itself. Smaller Proof of Work chains with low hash rates are more vulnerable; Ethereum Classic suffered confirmed 51% attacks in 2019 and 2020.
Can blockchain data be deleted?
On a public blockchain, no. Data is permanent and append-only, this is immutability. This is why enterprise blockchains operating under GDPR in Europe deliberately keep personal data off-chain, storing only a hash or reference pointer on the chain itself.
Does blockchain use a lot of energy?
Proof of Work blockchains like Bitcoin use significant energy. Proof of Stake blockchains use a fraction only. Ethereum’s switch in 2022 reduced energy consumption by an estimated 99.95%, according to the Ethereum Foundation.
Who controls a public blockchain?
Nobody, and everybody. The rules are enforced by code to the protocol and to running on thousands of independent nodes. Changes to the rules require broad consensus. No government, company, or individual can unilaterally alter a public blockchain’s history or rules. This property is called decentralisation.
What is a smart contract?
A smart contract is a piece of code deployed on a blockchain that runs automatically when predefined conditions are met, without requiring a human intermediary. The term was coined by computer scientist Nick Szabo in 1994, more than a decade before Ethereum made it practical at scale in 2015.
What is the difference between a token and a coin?
A coin is the native currency of a blockchain — Bitcoin (BTC) on Bitcoin, Ether (ETH) on Ethereum. A token is built on top of an existing blockchain using a standard like ERC-20 or ERC-721. USDC is a token; ETH is a coin. Non-fungible tokens (NFTs) are a specific type of token that represent unique, non-interchangeable assets.
What to Read Next
- What is a Smart Contract? — how self-executing code works and where it’s being used
- What is Proof of Stake? — a deeper look at how Ethereum’s consensus mechanism works
- What is MiCA? — the EU’s crypto regulation explained for professionals and beginners alike
- What is a Stablecoin? — and why EURQ, EURC, and USDC differ from USDT under EU law
- Blockchain Glossary A–Z — every term from this article defined in full, with real-world examples
Sources and Further Reading
- Nakamoto, S. (2008). Bitcoin: A Peer-to-Peer Electronic Cash System
- Buterin, V. (2013). Ethereum Whitepaper
- Regulation (EU) 2023/1114 — Markets in Crypto-Assets (MiCA), Official Journal of the European Union
- W3C. Decentralized Identifiers (DIDs) v1.0, W3C Recommendation, 19 July 2022
- Haber, S. & Stornetta, W.S. (1991). How to Time-Stamp a Digital Document, Journal of Cryptology
- Ethereum Foundation. Ethereum’s Energy Consumption
- World Bank. Remittance Prices Worldwide
- Hyperledger Foundation — enterprise DLT frameworks
- ESMA MiCA Public Register — verify current stablecoin authorisation status
This article is for educational purposes only and does not constitute financial, legal, or tax advice. Blockchain is a fast-moving field — regulatory details and protocol parameters change regularly.
© Blockchain People · Privacy Policy · Terms
