JOVANA
Library Glossary Getting Started Three Levels Fields How it works Mission
Join the mission
All guides

What Is a Blockchain?

A shared notebook that thousands of computers keep at once, where new pages are glued to the last and nobody can quietly rewrite an old one.

A Notebook Nobody Owns

Imagine a shared notebook that records who paid whom. Now imagine that thousands of people each keep an identical copy of it, all at the same time. Whenever a new entry is added, everyone writes it down in their own copy. There is no head office, no single master book locked in a vault. That, in one picture, is a blockchain: a record kept not in one place, but everywhere at once.

Because the same book lives on many independent machines, no single owner can edit it on a whim. To change the record, you would have to convince a whole crowd at once. This property — power spread out instead of held by one party — is called decentralization, and it is the heart of why blockchains feel different from anything that came before.

Pages Chained to Pages

The notebook does not record one entry at a time. Entries are gathered into batches, and each batch is a page called a block. When a page fills up, it is sealed and a fresh page begins. So far this is just a notebook with numbered pages.

The clever part is how the pages are joined. Each new page carries a short fingerprint of the page before it — a tiny summary that depends on every word on that earlier page. Page 2 points back at page 1, page 3 points back at page 2, and so on, all the way to the very first. The pages are not just stacked; they are linked in a line. That is why we call it a chain of blocks.

[ Block 1 ]<---[ Block 2 ]<---[ Block 3 ]<---[ Block 4 ]
  entries        entries        entries        entries
  + summary      + summary      + summary      + summary
  of nothing     of Block 1     of Block 2     of Block 3

  each arrow = "this page carries a fingerprint of the one before it"
Each block points back to the one before it, forming a single line.

Why You Can't Quietly Cheat

This back-pointing fingerprint is what makes the book hard to forge. Suppose you tried to slip into page 2 and change an old entry in your favour. The moment you alter a single word, page 2's fingerprint no longer matches. But page 3 was built around the *old* fingerprint of page 2 — so page 3 breaks too. And page 4, which leaned on page 3, breaks next. One small lie unravels every page after it.

So to forge convincingly you would have to rebuild every page from your edit onward, on your own copy — and then somehow get the whole crowd, who each hold the honest version, to throw away theirs and accept yours. With thousands of copies watching, that is wildly impractical. The chain doesn't make tampering *impossible* by magic; it makes tampering loud and obvious, which for a shared record is just as good.

One Company's Database vs. a Blockchain

It helps to compare this with the kind of record you already trust every day. When you check your bank balance, you are reading one company's database. The bank owns it, the bank runs it, and you take their word that the number is right. Usually that is fine — but it means a single party can change a row, freeze an account, or simply make a mistake, and you have no copy of your own to check against.

A blockchain swaps that single owner for an open crowd. The book is held by many independent machines called full nodes, each storing the entire history and each checking new entries against the rules before accepting them. No one node is in charge; agreement comes from the group. The trade is real: a blockchain is slower and more wasteful than one tidy company database. What you buy with that cost is a record no single party can secretly control.

The One-Paragraph Takeaway

Hold on to this picture: a blockchain is a shared, append-only ledger, copied across many independent computers, where new pages are sealed and chained to the last by a fingerprint — so the whole history hangs together and changing the past would break the chain for everyone to see. That is the entire idea. Everything else is detail filling it in.