Technology

What Is Blockchain

March 15, 2026 · ~2 min

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:

  1. Data — for example, “Alice sent Bob $50”
  2. Previous block’s hash — the link to the previous entry
  3. 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:

🔒 Chain is intact
Block #1 (Genesis)
Previous hash
0000
Hash
62ca80f2
Block #2
Previous hash
62ca80f2
Hash
16614341
Block #3
Previous hash
16614341
Hash
67f599aa

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:

  1. You change the data → block #2’s hash changes
  2. But block #3 stores the old hash of block #2 → block #3 is now invalid
  3. To fix block #3, you need to recalculate its hash → block #4 breaks
  4. 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 databaseBlockchain
Where it’s storedOne serverWith all participants
Who controls itOne organizationNobody (or everybody)
Can it be forgedYes, with accessPractically no
TrustYou must trust the companyNo 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.

← All notes