btc.tedlee.ca

Deep Dive into
Blockchain

What it is, how it works, where it came from — with clear visuals every step of the way.

⛔ Educational Use Only — Not Financial Advice

This page is for educational and entertainment purposes only. It is not financial, tax, or legal advice. Do your own research. Consult a licensed professional before making any financial decisions.

The Definition

What Is a Blockchain?

A blockchain is a decentralized digital ledger — a record book that is shared across thousands of computers around the world simultaneously.

Instead of one bank or company keeping the official record, everyone on the network holds an identical copy. New entries are bundled into "blocks" and added to a growing "chain" — and once written, they cannot be altered.

This creates a record that is transparent (anyone can read it), secure (changing it requires overwhelming computing power), and decentralized (no single authority controls it). [6]

Centralised (Traditional Bank) Central Server User User User User User ❌ One point of failure ❌ Bank controls your money Decentralised (Bitcoin) Node Node Node Node Node ✅ No single point of failure ✅ No one controls the network
Left: a traditional bank with one central server all users depend on. Right: Bitcoin's peer-to-peer network where every node holds an equal copy.

Plain-Language Analogy

Think of It as a Town Record Book

Imagine a small town where every property sale is recorded in a public ledger kept at the town hall. One official controls that ledger. If the official makes a mistake — or is corrupt — the record changes and no one can prove otherwise.

Now imagine instead that every single resident keeps an identical copy of that ledger at home. When a new sale happens, everyone updates their copy at the same time. If one person tries to change their copy to say they own a property they don't, the other thousands of copies all disagree — and the cheat is instantly exposed.

That is what a blockchain does — except instead of property records, it records financial transactions, and instead of a town, it spans the entire globe.

Ledger Copy #1 Node in Canada Ledger Copy #2 Node in USA Ledger Copy #3 Node in Germany Ledger Copy #4 Node in Japan ··· Ledger Copy #60,000+ Worldwide Every node holds an identical, up-to-date copy. Change one — the rest disagree instantly.

Inside the Structure

Anatomy of a Single Block

Every block in the Bitcoin blockchain contains three key pieces of information, bundled together like an envelope:

  • The Header — metadata about the block: when it was created, a reference to the previous block, and the solution to the mathematical puzzle (the "nonce").
  • The Transactions — a list of every Bitcoin payment confirmed in that block (Bitcoin currently holds around 2,000–3,000 transactions per block).
  • The Hash — a unique digital fingerprint of this block's entire contents. Change even one character inside, and the fingerprint changes completely.
Block #842,000 HEADER ⏰ Timestamp: 2024-04-22 14:32 UTC 🔢 Nonce: 3,842,910,001 (proof that a puzzle was solved) TRANSACTIONS (2,847) Alice → Bob: 0.05 BTC Carol → Dave: 1.200 BTC Eve → Frank: 0.003 BTC ··· 2,844 more transactions ··· THIS BLOCK'S HASH (fingerprint) 0000000000000000000395a8f… ◀ Header ◀ Txns ◀ Hash
A single block contains a header (metadata), thousands of transactions, and a unique hash that fingerprints the entire block.

The Chain

How Blocks Link Together

The word "chain" in blockchain refers to how every new block contains the hash (fingerprint) of the previous block inside its header. This creates an unbreakable chain stretching back to the very first block ever created — called the Genesis Block, mined by Satoshi Nakamoto on January 3, 2009.

If anyone tried to alter an old block — say, to change a transaction — that block's hash would change. That would break the link to the next block. And the block after that. And so on, all the way forward through the entire chain. You would need to redo all of that mathematical work faster than the entire rest of the network — a practical impossibility.

Block #1 — Genesis Prev Hash: 000000000 (none) Transactions: Coinbase only Date: Jan 3, 2009 THIS BLOCK'S HASH: 000000000019d668… hash copied → Block #2 Prev Hash: 000000000019d668… (copied from Block #1) Transactions: 1,204 txns THIS BLOCK'S HASH: 00000000839a8e6… hash copied → Block #3 Prev Hash: 00000000839a8e6… (copied from Block #2) Transactions: 2,847 txns THIS BLOCK'S HASH: 000000004ebadb5… Each block carries the previous block's fingerprint — forming an unbreakable chain back to Day 1.

🔗 Why "Previous Hash" Makes the Chain Unbreakable

Because Block #3 contains Block #2's hash, and Block #2 contains Block #1's hash, changing any old block would require recalculating every block that came after it — all the way to the present. With Bitcoin now having over 840,000 blocks and thousands of computers verifying them simultaneously, this is computationally impossible for any attacker.

Security Properties

Why Is Blockchain Secure?

What Happens If Someone Tries to Alter Block #1? Block #1 ⚠ ALTERED Fake transaction added! Hash now changed: NEW (DIFFERENT) HASH: a3f9c1b88740d2c… Block #2 ❌ BROKEN Prev Hash expected: 000000000019d668… But received: a3f9c1b88740d2c… ⛔ LINK BROKEN! Blocks #3 … #840K All invalidated Attacker would need to redo ALL this work faster than the world 60,000+ Honest Nodes reject cheat Altering one old block invalidates every block after it — and 60,000+ nodes reject it instantly.

Three properties combine to make blockchain extraordinarily difficult to tamper with:

  • Cryptographic hashing — Any change to a block's data produces a completely different hash, instantly exposing the tampering.
  • Chained links — Because every block references the previous block's hash, changing one block breaks every block that follows it.
  • Decentralization — Tens of thousands of independent computers all hold an identical copy. A cheat would have to overpower more than half of all that computing power simultaneously — a near-impossibility called the "51% attack problem."

Beyond Bitcoin

Real-World Uses of Blockchain

Blockchain technology is not limited to Bitcoin. Here are three major application areas:

Cryptocurrency

Peer-to-peer digital currencies like Bitcoin and Ethereum remove the need for banks as intermediaries. Anyone with an internet connection can send value anywhere in the world, 24/7, without permission from a bank.

📦
Supply Chain

Track goods from their point of origin all the way to delivery with full transparency and auditability. Every movement is recorded on the blockchain — making it nearly impossible to fake the origin of food, medicine, or luxury goods.

📄
Smart Contracts

Self-executing agreements encoded in computer code, which trigger automatically when pre-set conditions are met — for example, releasing payment to a seller the moment a delivery is confirmed. No lawyers or intermediaries required.

Traditional System Blockchain System 💵 Money: Bank holds, moves, charges fees You send directly, no middleman 📦 Goods: Paper records, easy to forge Every step recorded, immutable 📄 Contracts: Lawyers, courts, months of delays Code executes automatically

A Brief History

Blockchain History Timeline

The idea of a blockchain did not spring fully-formed from Satoshi Nakamoto's mind. It built on decades of cryptographic research. Here is the key history: [6][7][8]

1991

1991 — THE SEED IS PLANTED

Haber & Stornetta — Timestamped Documents

Stuart Haber and W. Scott Stornetta publish a paper proposing a cryptographically secured chain of timestamps to prevent backdating of digital documents. This is the earliest precursor to blockchain. Their work is cited directly in Satoshi's Bitcoin whitepaper 17 years later. [6]

1997

1997 — PROOF OF WORK CONCEPT

Adam Back — Hashcash

British cryptographer Adam Back invents Hashcash — a system requiring computers to do a small amount of mathematical work before sending email, to deter spam. The concept of "proof of work" is born. Bitcoin's mining system is directly inspired by this idea. [7]

2004

2004 — REUSABLE PROOF OF WORK

Hal Finney — RPOW

Hal Finney (who would later receive the first-ever Bitcoin transaction from Satoshi) develops "Reusable Proof of Work" — a step closer to digital cash. The pieces of Bitcoin are beginning to assemble. [7]

2008

2008 — THE WHITE PAPER

Satoshi Nakamoto Publishes the Bitcoin Paper

On October 31, 2008 — Halloween — an anonymous person or group using the name Satoshi Nakamoto publishes a nine-page paper titled "Bitcoin: A Peer-to-Peer Electronic Cash System." It describes, for the first time, a complete blockchain-based currency that requires no trusted third party. [8]

2009

2009 — BITCOIN GOES LIVE

The Genesis Block Is Mined

On January 3, 2009, Satoshi mines the very first Bitcoin block — Block #0, the Genesis Block. Embedded in it is a newspaper headline: "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks." A message about why Bitcoin was needed. Shortly after, Satoshi sends the first Bitcoin transaction to Hal Finney. [6]

2010

2010 — FIRST REAL PURCHASE

Bitcoin Pizza Day

On May 22, 2010, Laszlo Hanyecz pays 10,000 Bitcoin for two pizzas — the first real-world commercial Bitcoin transaction. At today's prices, those pizzas would be worth hundreds of millions of dollars. May 22 is now celebrated as "Bitcoin Pizza Day."

2015

2015 — BLOCKCHAIN GOES MAINSTREAM

Ethereum & Hyperledger

Ethereum launches, introducing "smart contracts" — programs that run automatically on the blockchain. That same year, the Linux Foundation launches Hyperledger, bringing blockchain to enterprise and business applications. The technology is now far bigger than Bitcoin alone. [6][8]

2024

2024 — BITCOIN ENTERS MAINSTREAM FINANCE

Bitcoin Spot ETFs Approved in the USA

The US Securities and Exchange Commission approves the first Bitcoin spot ETFs (Exchange-Traded Funds), allowing ordinary investors to gain Bitcoin exposure through regular brokerage accounts. BlackRock, Fidelity, and others launch funds. Bitcoin reaches new all-time highs.

Specifically Bitcoin

Bitcoin's Blockchain — Key Facts

~10 min Average time between blocks 21M max BTC Fixed forever by the code 840K+ blocks Blocks mined since Jan 2009 60K+ nodes Worldwide full nodes 99.99% uptime Running since Jan 3, 2009 Bitcoin's blockchain has never been hacked, never gone offline, and never had its 21 million coin limit changed.
Bitcoin's blockchain — key figures as of early 2024.

Bitcoin was the first practical application of blockchain technology. Its blockchain has several distinctive features:

  • One new block every ~10 minutes — The difficulty of the mathematical puzzle adjusts automatically every two weeks to maintain this pace, regardless of how much computing power is on the network.
  • The Halving — Every 210,000 blocks (roughly every 4 years), the reward miners receive for creating a new block is cut in half. This is how Bitcoin's supply is kept scarce and predictable. The most recent halving occurred in April 2024.
  • Immutability — Not a single confirmed Bitcoin transaction has ever been reversed. The record is permanent.
  • Transparency — Every transaction ever made on Bitcoin's blockchain is publicly visible. You can view them at mempool.space.

Keep Learning

Learn More

Maple Bitcoin School

To learn more about Bitcoin and build wealth, join Maple Bitcoin School — a Canadian Bitcoin education community. Designed for learning, not for buying Bitcoin.

Join Maple Bitcoin School →

Referral link — Ted Lee may receive a small reward if you sign up. This does not affect your cost.

⛔ Final Reminder — Not Financial Advice

  • This page is for educational and entertainment purposes only.
  • It is not financial, tax, or legal advice.
  • Bitcoin and blockchain-based assets are highly volatile and risky.
  • Do your own research. Verify everything independently.
  • Consult a licensed financial professional before making any decisions.
  • Never invest money you cannot afford to lose completely.

✅ Affiliation Disclosure

Ted Lee is not an employee, contractor, or shareholder of Maple Bitcoin School or any other service linked on this page. The Maple Bitcoin School link is a referral link and is clearly labelled. This site does not carry paid advertising. © 2026 Ted Lee. All links, all freedom. Not Financial or Legal Advice.

Transparency

Sources & References

All content is drawn from the following sources. External links open in a new tab.