Almost every crypto headline eventually mentions “the blockchain”, usually without explaining what one is. Strip away the jargon and a blockchain is simply a shared record of transactions that no single person or company controls. Instead of one bank keeping the master ledger, thousands of independent computers each keep an identical copy and constantly check one another’s work.
This guide walks through what that means in plain English — what a block holds, how blocks link together, who keeps the records, and what the design is genuinely good and bad at.
The problem a blockchain solves
Imagine sending money online without a bank in the middle. The hard part is not moving the message — it is stopping the same coin from being spent twice. Traditional systems solve this with a trusted middleman: your bank holds the official balance and updates it. You trust them to be honest and online.
A blockchain removes the middleman by making the record public and shared. Everyone can see every balance and every transfer, and the network agrees on the order of events. There is no central database to hack, bribe, or switch off — because there is no single copy. This shared, append-only record is a type of distributed ledger.
What a “block” actually contains
Transactions are not written one at a time. They are gathered into batches called blocks. A typical block holds three things:
- A list of transactions — who sent what to whom, since the last block.
- A timestamp and other metadata — including a reference to the block before it.
- A fingerprint of the previous block, called a hash.
That last item is the clever part. A hash is a short string of characters produced by running data through a one-way mathematical function. Change a single comma in the input and the hash changes completely, but you can never run the function backwards to recover the original data.
How blocks chain together
Each new block includes the hash of the block before it. That creates a chain: block 102 points back to block 101, which points back to block 100, all the way to the very first block (the genesis block).
Because every block carries the fingerprint of its predecessor, the chain is tamper-evident. If a bad actor tried to rewrite an old transaction, that block’s hash would change — which would break the reference in the next block, and the next, and so on. To get away with it they would have to silently recompute every single block that followed, faster than the rest of the network is building new ones. On a large chain that is wildly impractical, which is why old records are treated as effectively permanent, or immutable.
Who keeps the ledger?
The copies of the chain live on computers called nodes. Anyone can run one. Each node stores the full history and independently verifies new blocks against the network’s rules — checking signatures, making sure no coin is spent twice, and confirming the maths adds up.
This is what people mean by decentralization: there is no head office. If one node lies or goes offline, thousands of others carry on. A change to the rules only sticks if a large majority of participants voluntarily adopt it.
How thousands of strangers agree
If nobody is in charge, how does the network agree on which block comes next? Through a consensus mechanism — a set of rules that makes honest behaviour the most profitable strategy. The two best-known are proof of work (used by Bitcoin) and proof of stake (used by Ethereum). Both make it expensive to cheat and rewarding to follow the rules. We compare them in detail in our guide on Proof of Work vs Proof of Stake.
What blockchains are good — and bad — at
Blockchains are excellent when you need a record that many parties can trust without trusting each other: transparent ownership, censorship-resistant payments, and rules that run exactly as written. They are deliberately slow and redundant, though, and that has costs.
| Strengths | Trade-offs |
|---|---|
| No central point of failure or control | Slower and more expensive than a private database |
| Transparent, auditable history | Everything is public by default |
| Records are extremely hard to alter | Mistakes and theft are also hard to reverse |
| Open to anyone, anywhere | You are fully responsible for your own keys |
That final trade-off — self-responsibility — is the one newcomers underestimate most. Because no company holds your account, losing access to your wallet usually means losing your funds for good. We cover how to manage that safely in Crypto Wallets and Self-Custody.
The bottom line
A blockchain is a shared, tamper-evident record kept in sync by many independent computers rather than one trusted authority. Blocks batch transactions; hashes chain them together; nodes store and verify them; and consensus rules keep everyone honest. Understand those four ideas and the rest of crypto becomes far easier to follow.
Frequently asked questions
Is a blockchain the same as Bitcoin?
No. Bitcoin is one cryptocurrency that runs on its own blockchain. A blockchain is the underlying record-keeping technology; thousands of different projects use their own blockchains.
Can data on a blockchain be changed or deleted?
In practice, no. Once a transaction is buried under later blocks, altering it would mean re-computing every block after it and out-pacing the entire network u2014 which is economically impractical on a large chain. This is why blockchains are described as immutable.
Is everything on a public blockchain visible?
Yes. On public chains like Bitcoin and Ethereum, every transaction is viewable by anyone. Addresses are pseudonymous rather than anonymous u2014 they are not tied to your name on-chain, but the flow of funds is fully public.