BasicsBlockchain

What is a blockchain, really?

Forget the hype for a minute. Underneath every coin is one surprisingly simple idea: a shared notebook that thousands of strangers keep in sync without trusting each other.

A blockchain is a record of transactions โ€” a ledger โ€” that is copied across many computers and kept identical on all of them. Instead of one bank holding the official list of who owns what, the list is public and maintained by a whole network. That single design choice is what makes cryptocurrencies possible.

Abstract visualisation of connected blocks forming a chain

The "blocks" and the "chain"

Transactions are bundled together into a block โ€” think of it as one page of a notebook. Every so often (about every 10 minutes on Bitcoin, every few seconds on many others) a new block is finalised and added to the end.

Here's the clever part. Each block contains a hash โ€” a short fingerprint โ€” of the block before it. Change anything in an old block and its fingerprint changes, which breaks the next block's reference, which breaks the one after that. To rewrite history you'd have to redo every block since, faster than the entire rest of the network combined. In practice, that's not feasible. This is why the chain is often called immutable.

Analogy: imagine a diary where each new entry starts by quoting the exact wording of the previous one. Tear out or edit a page and every entry after it stops matching. Everyone would instantly see the diary was tampered with.

Who keeps the copies? Nodes.

A node is simply a computer running the network's software and storing a copy of the ledger. Anyone can run one. Nodes share new transactions and blocks with each other, and they independently check that every rule was followed โ€” no coins created from nothing, no spending money you don't have, valid signatures only. A block that breaks the rules is rejected by honest nodes, no matter who produced it.

How does everyone agree? Consensus.

If thousands of nodes are all adding to the same ledger, how do they agree on the one true version? Through a consensus mechanism. The two you'll hear about most:

  • Proof of Work (PoW): computers compete to solve a hard math puzzle; the winner proposes the next block and earns a reward. Redoing history would mean out-computing the entire network. Bitcoin uses this.
  • Proof of Stake (PoS): participants lock up (stake) coins for the right to validate blocks; cheat and your stake gets slashed. It uses far less energy. Ethereum and most newer chains use this.

Both answer the same question โ€” how do we make lying more expensive than being honest? โ€” with different tools.

What a blockchain is not

  • It's not anonymous. Most blockchains are public and pseudonymous: addresses aren't your name, but every transaction is visible forever.
  • It's not free to use. Adding data costs a fee (often called gas) that pays the people securing the network.
  • It's not reversible. There's no "undo" and usually no support line. Send to the wrong address and it's gone.
Ledger
Shared & public
Copies kept by
Nodes worldwide
Tamper-proofing
Hash-linked blocks
Agreement
PoW or PoS consensus

Why this matters for you

Everything else in crypto is built on top of this base. Smart contracts are programs stored in these blocks. Wallets are just tools for signing transactions that nodes will accept. Tokens are entries in a ledger. Once the ledger makes sense, the rest is far less mysterious.

Reality check: understanding blockchains does not make any coin a good investment. This guide is educational only and is not financial advice. Crypto assets are volatile and you can lose money โ€” see our full risk disclaimer.

Next up: see how programmable ledgers work in How smart contracts work, or learn who really controls the coins in Keys & signatures.

Related guides