A blockchain is a shared digital record book that many independent computers keep copies of and update together, rather than a single company or server holding the master copy. Instead of one institution vouching for what happened, thousands of participants each verify and store the same history, and the network as a whole agrees on which version is correct. That shared, hard-to-alter record is what makes cryptocurrencies like Bitcoin possible without a bank in the middle.
The basic building block: a chain of blocks
A blockchain groups transactions into batches called blocks. Each new block contains a cryptographic fingerprint, or hash, of the block that came before it. That fingerprint changes completely if even a single character of the earlier block’s data changes, which means altering old history would require redoing the fingerprint of every block after it — and redoing that work faster than the rest of the honest network can extend the real chain. That is what people mean when they call a blockchain “tamper-resistant”: changing the past is not impossible in theory, but it is deliberately made impractical.
The very first block in any blockchain, which has no predecessor, is called the genesis block. Everything after it links back, block by block, all the way to that starting point, forming an unbroken, auditable chain.
Why a network of computers, not one server
Instead of one company running the database, a blockchain is maintained by many independent computers called nodes, often scattered across the world with no single owner. This is what “decentralization” refers to in practice: no single node’s failure, censorship attempt, or compromise can bring the system down or rewrite its history, because every other node holds the same record and can reject anything that does not match the agreed-upon rules.
How the network agrees on what’s true
With no central authority, a blockchain needs a way for independent, mutually distrustful participants to agree on which transactions are valid and in what order they happened. That mechanism is called a consensus mechanism. The two most widely used approaches are:
- Proof of work — participants called miners spend real computing power solving a cryptographic puzzle to earn the right to add the next block. Bitcoin uses this method.
- Proof of stake — participants called validators lock up, or “stake,” their own coins as collateral for the right to validate transactions, and can lose that stake if they act dishonestly. Ethereum moved to this model.
Both approaches are designed to make dishonest behavior expensive and honest participation the rational choice, though they achieve that through different economic incentives, and each carries its own trade-offs in energy use, hardware requirements, and how power can concentrate over time.
Public, private, and permissioned blockchains
Not every blockchain works the way Bitcoin’s does. A public blockchain is open for anyone to join, read, and validate — Bitcoin and Ethereum are both public. A private or permissioned blockchain restricts who can participate, which some organizations prefer for internal record-keeping, but which also reintroduces a degree of the centralized trust that public blockchains were designed to remove. When people talk about “crypto” specifically, they are almost always talking about public blockchains.
What a blockchain is genuinely good at
| Strength | Why it matters |
|---|---|
| Tamper resistance | Rewriting confirmed history requires overpowering the entire honest network, which is deliberately made costly. |
| Transparency | On a public blockchain, anyone can independently verify the full transaction history rather than trusting a single party’s word. |
| No single point of failure | Because thousands of nodes hold the same data, the network keeps running even if many individual nodes go offline. |
| Programmability | Some blockchains support smart contracts, self-executing code that runs exactly as written, enabling applications beyond simple payments. See our DeFi guide. |
Decentralization is a spectrum, not a switch. A blockchain with a handful of large validators or a small number of mining pools is meaningfully more centralized in practice than its marketing might suggest, even while it remains technically permissionless. It is worth asking how distributed a network’s actual participation is, not just how the protocol is described.
What a blockchain is not good at
Blockchains trade away some conveniences to gain their tamper-resistance and transparency. Confirmed transactions are generally irreversible, so there is no built-in dispute-resolution process the way there is with a credit card chargeback. Public blockchains are also, by design, slower and more expensive per transaction than a centralized database, since every participating node must process and store the same data rather than one server handling the load. And transparency cuts both ways: every transaction is visible forever, which is a feature for auditability but a trade-off for privacy.
Reading a block’s contents
A typical block bundles together a batch of pending transactions, a timestamp, the hash linking it to the previous block, and a value called a nonce that miners adjust while searching for a valid proof-of-work solution. None of this requires understanding cryptography in depth to use a blockchain-based asset day to day, but knowing that a block is essentially a verified, timestamped batch of transactions — not a single transaction on its own — helps explain why confirmations take a little time and why more confirmations mean more certainty that a transaction is final.
Blockchain versus cryptocurrency
These terms get used interchangeably, but they are not the same thing. Blockchain is the underlying record-keeping technology; cryptocurrency is one application built on top of it. A blockchain can, in principle, be used to record things other than currency transactions — ownership of a digital asset, the state of a decentralized application, or a supply-chain record — though not every use case genuinely benefits from a blockchain’s particular trade-offs. For a fuller look at the asset class itself, see our guide on what cryptocurrency is.
Why this matters if you hold crypto
You do not need to run a node or understand cryptographic hashing to hold or use cryptocurrency responsibly, but a working sense of what the blockchain is actually doing helps explain the practical rules that follow from it: why a confirmed transaction cannot be reversed, why a lost private key cannot be recovered by anyone, and why the network keeps functioning even when individual companies built on top of it — exchanges, wallets, apps — run into trouble. The blockchain itself and the businesses that sit on top of it are two different layers, and it is worth keeping that distinction in mind.
This guide is educational and is not financial advice. Cryptocurrency prices are volatile and you should never risk money you cannot afford to lose. Always do your own research before acting.
Frequently asked questions
Can a blockchain be hacked?
The core ledger is extremely difficult to alter once confirmed. Most crypto hacks instead target weaker points like exchanges, wallets, or smart-contract code rather than the blockchain itself.
Do all blockchains use the same consensus method?
No. Proof of work and proof of stake are most common, but other designs exist with different trade-offs in speed, energy use, and how power is distributed.
Is everything on a blockchain public?
On public blockchains, yes -- transaction data is visible to anyone, though wallet addresses are pseudonymous rather than tied directly to a name.