What Is Blockchain
Short answer
Blockchain is a record book that can’t be forged. Each new entry is mathematically linked to the previous one. Change one entry — and the entire chain breaks. And this record book isn’t stored in one place — it’s held by thousands of participants simultaneously.
How a block works
Each block contains three things:
- Data — for example, “Alice sent Bob $50”
- Previous block’s hash — the link to the previous entry
- Its own hash — a unique “fingerprint” calculated from the data and the previous hash
A hash is like a fingerprint for data. Change even one character — and the fingerprint becomes completely different.
Try it yourself
Change the data in any block — watch how it breaks the entire chain:
Change the data in any block — and watch all subsequent hashes "break."
Why it can’t be forged
Suppose you want to change the record in block #2:
- You change the data → block #2’s hash changes
- But block #3 stores the old hash of block #2 → block #3 is now invalid
- To fix block #3, you need to recalculate its hash → block #4 breaks
- And so on — you’d need to recalculate the entire chain
Now remember: the chain is stored by thousands of participants. To forge a record, you’d need to simultaneously change all copies — practically impossible.
Decentralization
A regular database is one server. One company controls it. They can change the data, and you’d never know.
A blockchain is thousands of identical copies held by different participants:
| Regular database | Blockchain | |
|---|---|---|
| Where it’s stored | One server | With all participants |
| Who controls it | One organization | Nobody (or everybody) |
| Can it be forged | Yes, with access | Practically no |
| Trust | You must trust the company | No trust needed — there’s math |
Where it’s used beyond cryptocurrency
- Logistics. Tracking goods from factory to shelf. Can’t fake the country of origin.
- Voting. Every vote is recorded and verifiable, yet anonymous.
- Documents. Diplomas, certificates, contracts — verifiable authenticity without a middleman.
- Healthcare. Medical records that the patient controls.
Downsides
- Slow. Every entry is verified by thousands of participants — not instant.
- Energy-intensive. Some blockchains (Bitcoin) consume enormous amounts of electricity.
- Irreversible. Mistakes can’t be corrected — the record is forever.
- Hard to scale. More participants = slower processing.
Remember
Blockchain is a record book that can’t be rewritten. Each entry is linked to the previous one through a hash, and copies are held by all participants. This creates trust without middlemen — using nothing but math.