CoinBrew CoinBrew
education · CoinBrew

What Is a Blockchain? How It Works in Plain English

You’ve heard “blockchain” thrown around constantly — by crypto enthusiasts, financial news anchors, enterprise tech teams, and politicians who clearly don’t understand it. Most explanations are either hopelessly technical or frustratingly vague. This one won’t be.

Here’s exactly what a blockchain is, how it works, and why any of it matters.

The Problem Blockchain Solves

Before explaining what a blockchain is, it helps to understand the problem it was designed to solve.

When you send money through a bank, you’re trusting that bank to keep an accurate record. The bank updates its internal ledger: your account goes down $100, someone else’s goes up $100. You never see that ledger. You can’t verify it yourself. You trust the bank not to lie, make errors, or get hacked.

This is the trusted intermediary problem. Almost every financial system in the world depends on centralized record-keepers — banks, governments, clearinghouses — whose accuracy you have to take on faith.

Blockchain’s answer: what if nobody had to be trusted, because everyone could verify everything themselves?

What a Blockchain Actually Is

A blockchain is a shared database that’s maintained simultaneously by thousands of computers around the world, with a specific structure that makes it extremely difficult to alter past records.

That’s it. Not magic. Not a revolution in human consciousness. A database with unusual properties.

Let’s break down those properties.

It’s Distributed

Instead of living on one company’s server, the blockchain database exists on thousands (sometimes millions) of computers simultaneously. Every participant running the software has a full or partial copy of the entire transaction history.

If you wanted to corrupt this database, you’d need to corrupt the majority of all those copies at the same time. With Bitcoin, that would mean simultaneously controlling tens of thousands of computers distributed across dozens of countries. It’s theoretically possible but economically absurd.

It’s Made of Blocks

Data on a blockchain isn’t stored in a simple list — it’s grouped into blocks. Each block contains:

  • A batch of recent transactions
  • A timestamp
  • A reference to the previous block (called a “hash”)
  • Some other technical metadata

That reference to the previous block is what creates the “chain.” Each block is mathematically linked to the one before it, all the way back to the very first block (called the genesis block).

The Hash: What Makes It Tamper-Evident

A hash is a fingerprint. Run any data through a hash function and you get a fixed-length string of characters that uniquely represents that data. Change even one character of the input, and the hash output changes completely.

Here’s why this matters: each block contains the hash of the previous block. If someone tries to alter a transaction in an old block, that block’s hash changes. That breaks the link to the next block. Which then breaks the link to the block after that. The tampering cascades visibly through the entire chain.

To successfully rewrite history, an attacker would need to recalculate the cryptographic proofs for every subsequent block, faster than the entire honest network is adding new blocks. In Bitcoin’s case, that’s computationally and economically impossible for any realistic adversary.

How New Transactions Get Added

This is where the consensus mechanism comes in. Before any transaction gets recorded, the network has to agree it’s valid. There are a few ways this happens:

Proof of Work (Bitcoin’s Method)

Miners compete to solve a computationally difficult puzzle. The winner gets to add the next block and earns newly created cryptocurrency as a reward. This process — called mining — is intentionally expensive (in electricity and hardware) so that dishonest actors can’t easily dominate it.

Proof of Work is battle-tested and highly secure. It’s also energy-intensive, which is a legitimate criticism.

Proof of Stake (Ethereum’s Method)

Instead of competing through raw computation, validators lock up (“stake”) cryptocurrency as collateral. They’re selected to add new blocks in proportion to their stake. If they try to cheat, they lose their staked funds.

Proof of Stake uses a tiny fraction of the energy that Proof of Work requires, with comparable (arguably better) security for most purposes.

Why Consensus Matters

Both methods achieve the same goal: making it more expensive to lie than to play honestly. A participant who tries to submit fraudulent transactions either wastes enormous computational resources (PoW) or loses their staked collateral (PoS). Honesty is structurally incentivized.

Public vs. Private Blockchains

Not all blockchains are the same kind of open.

Public blockchains (Bitcoin, Ethereum) are permissionless. Anyone can read the data, anyone can submit transactions, anyone can run a node. There’s no gatekeeper.

Private blockchains are controlled by a single organization or consortium. They offer the tamper-evident data structure without the open access. Banks and enterprises often experiment with these for internal record-keeping.

Honest take: private blockchains are essentially fancy databases with extra steps. Most of their claimed benefits can be achieved with conventional database technology. The meaningful innovation lives in public, permissionless blockchains.

What Blockchains Are Actually Good At

Blockchain technology has genuine use cases and a lot of overhyped ones. Let’s be direct.

Genuine Use Cases

Digital money without banks. Bitcoin demonstrated that you can transfer value globally without any intermediary, in minutes, with no one’s permission required. That’s genuinely novel.

Programmable finance. Ethereum added the ability to run code on a blockchain (smart contracts), enabling decentralized exchanges, lending protocols, and financial instruments that operate automatically without human administrators.

Provable ownership. NFTs — despite the speculative circus of 2021 — represent a real idea: using a blockchain to establish verifiable ownership of a digital asset. The implementation has been messy; the concept is sound.

Censorship-resistant record-keeping. In countries with authoritarian governments or unreliable institutions, a public blockchain provides a record that no single authority can erase.

Overhyped Applications

Every few years, some consultant pitches “putting supply chains on the blockchain” or “blockchain for voting.” Most of these projects either quietly died or quietly became normal databases with a blockchain marketing veneer. If a centralized database would work just as well, blockchain adds cost and complexity without benefit.

The honest test: does this application require multiple parties who don’t trust each other to share a record? If yes, blockchain might help. If one party controls the data anyway, it probably doesn’t.

A Simple Mental Model

Think of a blockchain like a Google Doc that:

  1. Thousands of people have a copy of
  2. Can only be appended to, never edited
  3. Has a mathematical proof that every entry is in the right order
  4. Nobody owns — there’s no admin who can delete your access

That’s not a perfect analogy — Google Docs have a central server, and blockchains don’t — but it captures the spirit.

Bitcoin Was Just the Beginning

When Satoshi Nakamoto published the Bitcoin whitepaper in 2008, the immediate application was digital cash. But the underlying structure — a distributed, append-only, cryptographically linked ledger maintained by consensus — turned out to be more general.

Ethereum extended the idea by making the blockchain programmable. Instead of just recording “Alice sent 1 BTC to Bob,” Ethereum can record “if Alice sends 1 ETH, automatically route 0.3% to the protocol treasury, give Alice liquidity tokens, and update this 15-variable internal state.” That’s a fundamentally different beast.

From there, a whole ecosystem of blockchains emerged: Solana optimizing for speed, Avalanche for customizable subnets, Cosmos for interoperability between chains. Each makes different tradeoffs between security, speed, decentralization, and programmability.

The Limitations Worth Knowing

Blockchain isn’t a universal solution. Some honest limitations:

Speed. Bitcoin processes about 7 transactions per second. Visa handles tens of thousands. Layer 2 solutions (like Bitcoin’s Lightning Network and Ethereum’s rollups) help significantly, but base-layer blockchains are inherently slower than centralized systems.

Storage. Every full node stores the entire transaction history. Bitcoin’s blockchain is now hundreds of gigabytes. This creates real constraints on what can be stored on-chain.

Irreversibility. Tamper-resistance cuts both ways. If you send crypto to the wrong address, there’s no customer support to reverse it. The same property that makes blockchain secure makes user error permanent.

Oracle problem. Blockchains can only natively know about data that’s already on the blockchain. To incorporate real-world data (weather, stock prices, sports scores), you need external data providers called oracles — which reintroduce trust assumptions.

Why This Technology Matters

The deeper significance of blockchain isn’t Bitcoin’s price chart. It’s the proof of concept for a new category of institution.

For most of human history, coordinating between strangers at scale required either trusting a central authority or not coordinating at all. Blockchain creates a third option: coordinate through math and incentives, with no central authority required.

Whether that’s the future of finance, or the future of the internet, or a niche tool with a specific set of valuable applications — that’s still being worked out. But the underlying breakthrough is real, and it’s worth understanding.


Frequently Asked Questions

Q: Is blockchain the same as Bitcoin?

No. Bitcoin is a cryptocurrency that runs on a blockchain. The blockchain is the underlying technology — the distributed ledger. Bitcoin was the first widely adopted application of blockchain, but thousands of other cryptocurrencies and applications run on their own blockchains.

Q: Can a blockchain be hacked?

The blockchain record itself is extremely difficult to tamper with in major networks like Bitcoin and Ethereum. However, the surrounding ecosystem — exchanges, wallets, smart contracts — can have vulnerabilities. Most crypto hacks aren’t attacks on the blockchain itself but on software built on top of it.

Q: Who owns a blockchain?

Public blockchains like Bitcoin and Ethereum have no single owner. They’re maintained by a distributed network of participants around the world. There are development teams who write and propose changes to the software, but they can’t force anyone to adopt those changes — nodes have to voluntarily upgrade.

Q: Do you need cryptocurrency to use a blockchain?

To submit transactions to a public blockchain, you generally need to pay a small fee in the native cryptocurrency (called “gas” on Ethereum). But you can read blockchain data freely without owning any crypto.

Q: Is blockchain permanent?

In practice, yes. Once a transaction has several confirmations (meaning several new blocks have been added after it), altering it would require an economically prohibitive amount of computation. For major blockchains, “permanent” is a reasonable description for all practical purposes.