Back to Academy
FoundationsBeginner·6 min read·Lesson 2 of 36

What Is a Blockchain?

A blockchain is a ledger nobody can lie about. Every transaction ever made is permanently recorded, publicly visible, and verified by thousands of computers that don't trust each other — and that's exactly what makes it trustworthy.

blockchaindecentralizationcrypto basicsfoundations

Start With the Problem

Every financial system needs a ledger. A record of who owns what, and who sent what to whom.

Banks keep ledgers. They're private databases on bank servers. You trust that your bank's database has the right number next to your name — and you trust that because banks are regulated, audited, and insured.

But there's a catch: you're trusting the bank. You don't actually see the ledger. You see a number on a screen that the bank shows you.

Crypto needed to solve a different problem: how do you maintain a trustworthy ledger when there's no bank? When anyone can join the network, and nobody trusts anyone else?

The answer is the blockchain.


The Ledger Nobody Owns

Think of it this way. Imagine a Google Doc that records every financial transaction in the world. Anyone can read it. Anyone can see every entry, every amount, every timestamp.

But here's what makes it different from any Google Doc: nobody can edit or delete an old entry. Not the person who created it, not a government, not anyone. The document is only ever appended — new entries added to the bottom. Old entries are frozen permanently.

Now imagine instead of living on Google's servers, that document lives on 15,000 different computers simultaneously. Every computer has an identical copy. If someone on one of those computers tries to change an old entry, all the other computers see the discrepancy and reject it.

That's essentially what a blockchain is.

// BLOCKCHAIN STRUCTURE

BLOCK #101HASH:0x3f7a…c91dPREV:0x8b2e…a04fTx: 1.2 BTCTx: 0.5 BTCBLOCK #102HASH:0xa1c4…77fePREV:0x3f7a…c91dTx: 3.0 BTCTx: 0.1 BTCBLOCK #103HASH:0xd8b1…39acPREV:0xa1c4…77feTx: 0.8 BTCTx: 2.2 BTCBLOCK #104 (NEW)HASH:0x55e2…f3b8PREV:0xd8b1…39acTx: 1.0 BTCTx: 0.4 BTC▲ BEING ADDEDEach block references the previous hash — altering any block breaks the entire chain

Blocks are cryptographically linked. Changing one block invalidates every block after it.

EXPAND

What's Actually Inside a Block

The "block" in blockchain is just a batch of recent transactions grouped together. Every few minutes (or seconds, depending on the network), all the transactions that have occurred since the last block get bundled into a new one.

Here's what a block actually contains:

Transactions — the core data. "Address A sent 0.5 BTC to Address B at 2:14pm." Dozens or hundreds of these per block.

Timestamp — when this block was created. Permanent record.

Hash — a unique fingerprint for this block. A hash is generated by running the block's data through a mathematical function. Change even one character in the data, and the hash completely changes. Think of it like a DNA test for data.

Previous block's hash — this is the key to everything. Each block contains the fingerprint of the block before it.

That last point is why it's called a chain. Block 850,000 contains the hash of Block 849,999. Block 849,999 contains the hash of 849,998. All the way back to Block 1.

// DISTRIBUTED CONSENSUS — HOW NODES AGREE

BLOCKCHAIN NETWORKNode1Node2Node3Node4Node5Node6Node7USER SUBMITSTRANSACTION0xa1b2…c3d4BADACTORFraudulent TxNo single point of failure — mathematically enforced truth

No central server — every node holds a full copy. Bad actors are overruled by the majority.

EXPAND

Why It's Tamper-Resistant

Here's why that chain structure makes the whole thing nearly impossible to fake.

Let's say someone wants to go back and change a transaction from 2019 — maybe they want to pretend they never sent someone Bitcoin. To do that, they'd have to change the data in that old block. The moment they do, that block's hash changes completely. But the next block contains the original hash, so now that block's reference is wrong. They'd have to change that block too. And the next. And the next. All the way forward to the present block.

// KEY RULE

To rewrite history on a blockchain, you'd have to redo the computational work for every block that came after the one you changed — faster than the entire rest of the network is adding new blocks. On Bitcoin, that means outpacing thousands of specialized computers running 24/7. In practice, it's not possible.

And you'd have to do all that before the rest of the network notices and rejects your version. The honest chain — the one with the most verified work behind it — always wins. Your falsified version would be rejected automatically.

This is what "immutable" means when people talk about blockchain. It's not a policy — it's a mathematical property of how the chain is constructed.


The Distributed Part Is Just as Important

The tamper-resistance only works because the ledger isn't stored in one place.

If Bitcoin's blockchain lived on a single server, someone could hack that server and rewrite the whole thing. There'd be no other copies to contradict them.

But it lives on thousands of computers — called nodes — spread across the globe. Each one has the complete history of every transaction ever made on that network. They're constantly talking to each other, comparing notes, and rejecting any version of the chain that doesn't match the consensus.

There's no headquarters. No CEO. No "Bitcoin server room" that a government could raid and shut down.

// INSIGHT

This is what people mean when they say crypto is "decentralized." It's not a political statement — it's a technical description. The data doesn't live anywhere in particular. It lives everywhere simultaneously. That's what makes it so hard to kill or corrupt.


The Shared Google Doc Analogy, Revisited

Let me bring the analogy back, now that you understand the mechanics.

Imagine a Google Doc that:

  • Anybody in the world can read
  • New entries can always be added
  • Old entries can never be changed or deleted
  • Lives on 15,000 computers at once instead of Google's servers
  • Uses mathematical fingerprints to link every entry to the one before it
  • Is maintained by thousands of independent computers that receive a small reward for doing the verification work honestly

That's a blockchain. Not magic. Not complicated once you see the pieces.


Why This Changes Things

The blockchain is what makes cryptocurrency more than just digital money. It's what makes it trustless — meaning you don't have to trust any particular person or institution for the system to work.

You don't trust a bank. You trust math. You trust code. You trust a record that is publicly visible, permanently preserved, and verified by thousands of independent parties who have a financial incentive to do it honestly.

Is it perfect? No. But for the specific problem it was designed to solve — maintaining a reliable public ledger without a central authority — it's an elegant solution.

In the next lesson, we dig into Bitcoin specifically: who created it, why, and what that fixed 21 million supply actually means for the future.

Loading curriculum...