Blog

  • How blockchains actually work

    How blockchains actually work

    You do not need to understand blockchains to use crypto safely, in the same way you do not need to understand TCP/IP to send an email. But a working mental model makes you considerably harder to deceive, which is reason enough.

    What is actually in a block

    A block contains three things: a batch of transactions, a timestamp, and a cryptographic fingerprint of the previous block. That third item is what makes it a chain.

    The fingerprint is produced by a hash function. Feed it any data and it returns a fixed-length string. The useful properties are that the same input always gives the same output, any change to the input — even one character — gives a completely different output, and you cannot work backwards from the output to the input.

    Why tampering fails

    Suppose you wanted to alter a transaction in block 500 of a chain that is now 900 blocks long. Changing it changes block 500’s hash. But block 501 contains the old hash of block 500, so block 501 is now invalid. Fixing that changes block 501’s hash, invalidating 502, and so on through to block 900.

    So you would have to redo every block from 500 onwards — while the rest of the network continues extending the honest chain, which you must also outpace. On a large network this is not merely difficult; it costs more than any plausible gain.

    How the network agrees

    The hard problem a blockchain solves is agreement. Thousands of anonymous computers, some of which may be hostile, must converge on one version of history with no one in charge. The procedure for doing this is called consensus.

    Proof of work

    Proof of work makes proposing a block expensive. Participants — miners — race to find a number that, combined with the block’s contents, produces a hash below a target value. There is no shortcut; you guess, trillions of times per second. Whoever finds it first proposes the block and receives newly created coins.

    The cost is real electricity and hardware, which is exactly the point: an attacker cannot fake it by creating more identities. Bitcoin uses this. The obvious criticism is the energy consumption, which is inherent rather than incidental — the security is the expenditure.

    Proof of stake

    Proof of stake replaces computation with collateral. Validators lock up coins, the protocol selects them to propose and attest to blocks, and misbehaviour destroys part of their stake. Attacking the network means acquiring an enormous stake and deliberately forfeiting it.

    Ethereum switched to this in 2022, cutting energy use by over 99%. The criticism is that influence follows existing holdings, which may concentrate control among large holders and staking services.

    Confirmations, and why they matter

    When your transaction enters a block it has one confirmation. Each subsequent block adds another. More confirmations means more work an attacker would need to undo it, which is why exchanges wait for several before crediting a deposit. It is not bureaucracy; it is the probability of reversal falling toward zero.

    “Decentralised” is a spectrum

    It is tempting to treat decentralisation as a yes/no property. It is not. A network can be decentralised in who runs nodes but centralised in who writes the software, or in which few mining pools produce most blocks, or in who controls a protocol’s admin keys.

    When a project describes itself as decentralised, the useful question is: decentralised in which respect, and who could still change or stop this? Many things marketed as decentralised have a small number of people who could halt them tomorrow.

    What to read next

    Next in this path: why does crypto have value? — which is a harder question than it first appears.

  • What is cryptocurrency? A beginner’s guide

    What is cryptocurrency? A beginner’s guide

    If you have arrived here knowing nothing about cryptocurrency, you are in the right place. This guide assumes no prior knowledge and does not require you to buy anything.

    The short version

    A cryptocurrency is money that exists as entries on a shared ledger — a list of who owns what — that thousands of computers around the world each keep an identical copy of. There is no central bank, no company running it, and no head office.

    When you hold money in a bank, your balance is a row in that bank’s private database. You trust the bank to keep it accurate, and the bank can freeze it, reverse it or lose it. With a cryptocurrency, the ledger is public, everyone can check it, and no single party can quietly change it.

    How that actually works

    The ledger is called a blockchain. Transactions are grouped into blocks, and each block contains a cryptographic fingerprint of the one before it, forming a chain. Change an old entry and every fingerprint after it breaks — which is why altering history on a large network is impractical.

    Ownership works through cryptography rather than identity documents. Each account is controlled by a private key, a secret number that produces a signature proving you authorised a transaction. The network checks the signature. It does not know or care who you are.

    This is the part that surprises most people: control of the key is ownership. There is no account recovery, no password reset and no fraud department. That cuts both ways, and it is the single most important thing to understand before you put money in.

    How it differs from the money you already use

    • No intermediary. Payments go directly between parties. No bank has to approve them.
    • Irreversible. Once confirmed, a transaction cannot be undone. Send to the wrong address and the money is gone.
    • Always open. The network runs continuously — no weekends, no clearing delays.
    • Volatile. Values move enormously. Your bank balance does not fall 20% overnight; crypto can.
    • Unprotected. There is generally no deposit insurance and no chargeback mechanism.

    What is it actually for?

    An honest answer has to separate what works today from what is aspirational.

    It genuinely works for moving value across borders without a bank, for holding an asset no government can inflate or confiscate by decree, and as a settlement layer for applications that need to move value programmatically.

    It works less well as everyday payment — fees and confirmation times make buying coffee impractical on most chains — and as a stable store of value, given the volatility. Many claims made for crypto describe a future state rather than current reality, and it is worth noticing which kind of claim you are being sold.

    What the technology does not do

    A blockchain makes records extremely difficult to alter. It does not make them true. If someone records a false claim, the network preserves the false claim faithfully and permanently. “It is on the blockchain” is a statement about durability, not accuracy — a distinction that a great deal of marketing depends on you missing.

    The risks, stated plainly

    Crypto assets have fallen 70–90% from their peaks more than once and taken years to recover. Individual projects fail permanently and their tokens become worthless. Transactions are irreversible, there is no deposit protection, and the industry has an unusually high concentration of people trying to take your money.

    None of that means crypto is worthless or that learning about it is a waste of time. It does mean the honest rule is the boring one: only ever commit money you can genuinely afford to lose entirely.

    What to read next

    The next guide in this path explains how blockchains actually work in a bit more detail. If you would rather jump straight to safety, how to spot a crypto scam is the guide we would most like every newcomer to read.