What Is Blockchain?
Discovering the trust network of block ledgers
Definition
A Blockchain is a distributed, decentralized digital ledger that records transactions across many computers in a way that prevents the records from being altered retroactively. Each group of transactions is stored in a 'Block,' and each Block is cryptographically linked to the one before it, forming a 'chain.' The ledger is maintained by a network of participants (Node) who each hold a copy and verify new entries through Consensus. Key concepts include Distributed Ledger, Peer-to-Peer, Immutable.
Blockchain technology solves the double-spending problem — ensuring that a digital asset cannot be spent more than once without requiring a trusted third party like a bank. It achieves this through: Decentralization (no single entity controls the data), transparency (all transactions are publicly visible), immutability (once recorded, data cannot be changed), and Consensus (network participants agree on the valid state of the ledger).
Real-Life Example
Imagine a neighborhood where every resident keeps a notebook recording all transactions between neighbors — who borrowed money from whom, who sold their bicycle, who paid for a service. Whenever a transaction happens, everyone writes it in their notebook. If someone tries to change their notebook later, everyone else's notebook still shows the truth. No single person controls the records, and the community collectively ensures accuracy. Blockchain operates on this same principle, but on a global scale with cryptographic security.
A real-world example: In 2017, the government of Estonia began using Blockchain technology to secure over one million patient health records. The Blockchain ensures that any access or modification to medical data is permanently recorded and cannot be tampered with. Patients can see who accessed their records and when. This gives citizens greater control over their medical data while preventing unauthorized changes.
Interactive Diagram
Launch the interactive diagram to see this in action.
Open Interactive DiagramThe interactive diagram for this chapter demonstrates How Records Are Stored. It shows a traditional database with a central server storing records vs a blockchain with distributed storage.
What to explore:
- toggle between centralized and distributed views; add a record in each system; see how each stores and protects data
- traditional storage keeps all records on one server, while blockchain distributes copies across many computers for security
Introduction
Imagine a digital notebook that thousands of people share. Whenever someone writes something new, everyone's copy updates instantly. And nobody can erase or change what has already been written. That is the basic idea behind Blockchain. It is a shared, permanent record of information that no single person controls.
Blockchain technology was introduced in 2008 by a person (or group) using the name Satoshi Nakamoto. It was originally created for Bitcoin, the first cryptocurrency. But Blockchain turned out to be much more useful than just digital money. It solves a fundamental problem: how do you create a digital record that is trustworthy without needing a bank, government, or company to guarantee it?
In this chapter, you will learn what Blockchain is, why it was invented, and the core problems it solves. You will understand the key ideas of Decentralization, immutability, and Consensus that make Blockchain unique. By the end, you will see why many people believe Blockchain is as important as the internet itself.
How It Works
A Blockchain is exactly what it sounds like — a chain of Block. Each Block contains a batch of records (like transactions or data entries). Block are linked together in chronological order, with each Block containing a reference to the one before it. This creates a chain that goes all the way back to the very first Block, called the genesis Block. If someone tries to change a record in an old Block, the entire chain breaks, making tampering instantly detectable.
The Blockchain is not stored in one place. It is distributed across a network of computers, called Node. Every Node has a complete copy of the entire Blockchain. When someone wants to add a new Block, they broadcast it to the network. Each Node checks the Block for validity. If the Block is valid, each Node adds it to its own copy of the Blockchain. Because thousands of Node all have the same data, no single person or organization controls the records.
Household Object Analogy
Think of a Blockchain like a group diary that everyone in your class shares. Every time someone writes in it, everyone gets a copy. You can see every entry ever made, and you can check that nothing has been erased or changed. If someone tried to sneak in and change an old entry, everyone would notice because their copies would not match. The diary is not kept in one person's desk — everyone has their own copy.
Deeper Dive
Immutability is the property that records on a Blockchain cannot be changed or deleted. This is different from traditional databases where records can be updated, overwritten, or deleted. Immutability is achieved through the chain structure and cryptographic hashing. Each Block's reference to the previous Block is a cryptographic hash — a unique fingerprint of that Block's data. Changing any data changes the hash, breaking the link. To change a Block, you would have to recalculate all subsequent Block faster than the entire network can add new ones, which is practically impossible.
Decentralization means no single person, company, or government controls the Blockchain. In a centralized system (like a bank), one authority makes the rules and maintains the records. In a decentralized system (like a Blockchain), rules are decided by Consensus of the participants. This eliminates the need to trust any single entity. Decentralization also makes the system more resilient — if some Node go offline, the Blockchain continues to operate on the remaining Node.
Consensus is how Node in a Blockchain network agree on which Block to add. Since there is no central authority, Node must have a way to agree on the true state of the Blockchain. Different Blockchain use different Consensus mechanisms. The most famous is Proof of Work (used by Bitcoin), where Node solve complex mathematical puzzles to earn the right to add a Block. Others include Proof of Stake, where Node put up their own cryptocurrency as collateral.
Key Insight
The name 'Blockchain' is literal: Block of data linked in a chain. The simplicity of the name reflects the simplicity of the core idea. Despite all the complexity of cryptography, Consensus algorithms, and network protocols, the fundamental concept is elegantly simple — a chain of Block.
Advanced
The Byzantine Fault Tolerance (BFT) of a Blockchain refers to its ability to function correctly even when some Node fail or act maliciously. The Bitcoin Blockchain is considered 'Byzantine fault tolerant' because it can reach Consensus even if up to 49% of the network's computing power is controlled by attackers. Understanding BFT requirements is crucial for designing secure Blockchain systems.
Public vs. private Blockchain differ in who can participate. Public Blockchain (like Bitcoin and Ethereum) allow anyone to join, read data, and submit transactions. Private Blockchain restrict participation to approved entities. Consortium Blockchain fall in between — a group of organizations share control. Public Blockchain are fully decentralized but slower. Private Blockchain are faster but less decentralized. The choice depends on the use case.
The Blockchain trilemma, proposed by Ethereum creator Vitalik Buterin, states that Blockchain systems can only achieve two of three properties: Decentralization, security, and scalability. Bitcoin prioritizes Decentralization and security but processes only about 7 transactions per second. Visa, by contrast, processes thousands per second but is fully centralized. Solving the trilemma is an active area of research.
Vocabulary Table
| Term | Definition |
|---|---|
| Blockchain | A decentralized digital ledger that records transactions across a network of computers. |
| Block | A container holding a batch of transactions and a link to the previous block. |
| Decentralization | Distribution of control away from a single authority to many participants. |
| Distributed Ledger | A database that is shared and synchronized across multiple locations or nodes. |
| Node | A computer that maintains a copy of the blockchain and participates in the network. |
| Peer-to-Peer | A network model where participants communicate directly without a central server. |
| Consensus | An agreement protocol among distributed nodes to validate new blocks. |
| Immutable | Unable to be changed or altered once recorded. |
Fun Facts
The Bitcoin whitepaper, titled 'Bitcoin: A Peer-to-Peer Electronic Cash System', was published in October 2008 by Satoshi Nakamoto. To this day, Satoshi's true identity remains unknown.
The first Block of the Bitcoin Blockchain, called the genesis Block, was mined on January 3, 2009. It contained a hidden message: 'The Times 03/Jan/2009 Chancellor on brink of second bailout for banks.'
There are over 10,000 cryptocurrencies in existence today, most running on their own Blockchain or as tokens on other Blockchain.
The Ethereum Blockchain, launched in 2015, introduced smart contracts — programs that run on the Blockchain. This expanded Blockchain use far beyond digital currency.
The global Blockchain market is expected to grow from $7 billion in 2022 to over $94 billion by 2027, with applications in finance, supply chain, healthcare, and government.
Common Misconceptions
Misconception: Blockchain and Bitcoin are the same thing.
Truth: Bitcoin is the first application built on Blockchain technology. Blockchain is the underlying technology — a Distributed Ledger — that can be used for many purposes beyond cryptocurrency.
Misconception: Blockchain records cannot be seen by anyone.
Truth: On public Blockchain like Bitcoin and Ethereum, all transactions are visible to everyone. The record is transparent but pseudonymous — you can see that address X sent money to address Y, but you do not know who controls those addresses unless they reveal their identity.
Misconception: Blockchain is completely anonymous.
Truth: Blockchain is pseudonymous, not anonymous. Transactions are linked to addresses (public keys), not real-world identities. However, transaction patterns can often be analyzed to identify users, especially if addresses are linked to known identities through exchanges.
Misconception: Blockchain is too complex for regular people to understand.
Truth: The basic idea of Blockchain — a shared, tamper-proof record that no single person controls — is simple enough for anyone to understand. The technical details (cryptography, Consensus algorithms) are complex, but the core concept is accessible.
Knowledge Check
1. What makes a blockchain different from a traditional database?
Answer: It is decentralized and immutable
2. Who or what controls a decentralized blockchain network?
Answer: The majority of network nodes
3. What was the first practical use of blockchain technology?
Answer: Bitcoin cryptocurrency
