How Bitcoin Works (Without the Jargon)

Estimated read time: 10 min

Picture a small Swiss village in 1850. Everyone knows everyone. When Hans buys a cow from Maria, three witnesses see it happen. Everyone updates their mental record. No one needs a notary because the community itself is the record-keeper.

Now scale that idea to a global network of tens of thousands of computers, each holding an identical copy of every transaction that has ever occurred, updating in real time, with no central coordinator. That is Bitcoin.

It sounds complicated. The mechanics, once explained plainly, are logical and elegant.

What is the Blockchain?

The blockchain is a public, digital ledger that records every Bitcoin transaction that has ever taken place.

Think of it as a giant spreadsheet that every participant in the Bitcoin network keeps a copy of. Every few minutes, a new "page" of transactions is added. These pages are called blocks. Each block is linked mathematically to the one before it, forming a chain — hence the name blockchain.

The critical property of this structure is immutability. Once a block is added to the chain, altering it would require redoing all the mathematical work that went into that block and every block that came after it. Given the scale of the network, this is not practically possible. A transaction confirmed on the Bitcoin blockchain is, for all practical purposes, permanent.

Here is what makes this different from a bank's ledger: the bank's database is private, controlled by one company, and can be altered by that company. The Bitcoin blockchain is public (anyone can read it), distributed (thousands of computers hold copies), and effectively tamper-proof because of the way blocks are linked together and validated by the network.

Every confirmed Bitcoin transaction — every one, going back to the very first block in January 2009 — is visible to anyone who cares to look. You can browse them right now using a blockchain explorer. No account required.

How Mining Works

Mining is the process by which new blocks of transactions are added to the blockchain, and it serves two purposes simultaneously: it secures the network against attacks, and it creates new Bitcoin.

Here is how it works in plain terms.

Miners are computers (in practice, specialized hardware running in large facilities) that compete with each other to solve a mathematical puzzle. The puzzle is essentially a guessing game: find a number that, when combined with the block data and processed through a mathematical function, produces a result that meets a specific target. There is no clever way to solve it. You have to guess, check, fail, and guess again — billions of times per second.

The first miner to find a valid solution announces it to the network. Other nodes check the solution immediately (verification is easy; finding the solution is hard). If valid, the block is added to the chain. The winning miner receives two things: the block reward (currently 3.125 newly created Bitcoin per block) plus all the transaction fees included in that block.

Then the competition resets and starts again.

The difficulty of this puzzle adjusts automatically every 2,016 blocks (roughly every two weeks) so that, regardless of how much computing power is in the network, a new block appears roughly every 10 minutes. This is one of Bitcoin's elegant design choices: the 10-minute block time is not a limitation or a bug. It is a deliberate feature that gives the network time to propagate new blocks globally before the next one is found.

How a Transaction Actually Works

When you send Bitcoin, a sequence of steps happens that most wallet software handles automatically. Understanding what is happening beneath the surface helps you use Bitcoin more confidently.

Step 1: You create the transaction. Your wallet assembles a digital instruction: "I am sending 0.01 BTC from this address to this address." The wallet also selects which of your "coins" (technically called UTXOs, explained below) to use as inputs.

Step 2: You sign it with your private key. Your private key is a secret number known only to you. Using it, your wallet creates a mathematical signature that proves you authorized this transaction — without ever revealing the private key itself. This is one of the most elegant parts of Bitcoin's design: you prove ownership without exposing the secret.

Step 3: The transaction is broadcast to the network. Your wallet sends the signed transaction to nearby nodes. Those nodes verify it is valid (correct signature, unspent inputs, proper format) and pass it on to their neighbors. Within seconds, the transaction has typically reached nodes across the globe.

Step 4: Miners include it in a block. Miners select transactions from the pool of unconfirmed transactions (called the mempool) to include in the next block, generally prioritizing those offering higher fees.

Step 5: Confirmations accumulate. Once your transaction is included in a block, that is one confirmation. Each new block added after that adds another confirmation. After one confirmation, the transaction is very likely permanent. After six confirmations — roughly one hour — it is considered effectively irreversible by even the most cautious standards.

For everyday amounts, most merchants and individuals accept one or two confirmations. For very large transfers, waiting for six is prudent.

Private Keys and Public Keys: the Mailbox Analogy

This is the concept that confuses most beginners, and it does not need to.

Your Bitcoin wallet generates a pair of mathematically linked numbers:

The public key (and the address derived from it) is like your mailbox address. You can share it freely with anyone. When someone wants to send you Bitcoin, they send it to your address. Anyone can drop something in.

The private key is the key to that mailbox. Only the person holding it can open the box and take what is inside. If you lose it, you cannot access your coins. If someone else gets it, they can take everything.

The relationship between the two keys is a one-way mathematical function: you can derive the public key from the private key, but you cannot reverse the process to derive the private key from the public key. This is not just a convention — it is mathematically infeasible with current and foreseeable computing power.

A typical Bitcoin private key looks like this: a 256-bit number, often displayed as 64 hexadecimal characters or encoded as a seed phrase (12 or 24 words). The seed phrase is the human-readable form of this key. Guard it the way you would guard the combination to a safe containing everything you own.

What is Proof of Work?

Proof of work is Bitcoin's security mechanism — the reason why rewriting Bitcoin's history is prohibitively expensive.

The idea is this: to add a valid block, a miner must do real, costly computational work. That work requires electricity and specialized hardware. When the rest of the network sees a proposed block, they can verify in milliseconds that the work was done correctly. But doing the work in the first place required genuine expenditure.

Now imagine an attacker wants to alter a transaction from six months ago — say, to reverse a payment they made. To do so, they would need to redo all the proof-of-work for that block, then for every subsequent block, while simultaneously outpacing the honest network that keeps adding new blocks. At today's scale, the Bitcoin network performs roughly 600 exahashes of computation per second. Controlling even half of that hash power would require hardware costing billions of dollars and electricity consumption rivaling a small country — far more than any realistic attacker could gain.

This is why proof of work is called a "security by cost" system. Honesty is simply more profitable than cheating.

An important note: proof of work is energy-intensive by design. This is a feature, not a flaw. The energy cost is what makes the security real. Whether that energy cost is worth it is a legitimate policy debate — but the mechanism works as designed.

Why is Bitcoin Sometimes Slow or Expensive?

Bitcoin prioritizes security and decentralization above speed. Understanding this trade-off is important so you use the right tool for the right job.

Each block holds a limited amount of data — currently around 1 to 4 megabytes, depending on transaction types. A new block appears roughly every 10 minutes. This means there is a finite amount of transaction throughput available per unit of time.

When demand for block space is low, fees are minimal — sometimes less than the equivalent of a few cents per transaction. When demand spikes — for example, during price run-ups when many people are moving coins, or during waves of on-chain activity from Bitcoin NFTs and token protocols — block space fills up. Fees can rise to the equivalent of tens of dollars or more per transaction for time-sensitive payments.

This is a known and accepted limitation of Bitcoin's base layer. For everyday small payments — buying a coffee, splitting a bill, tipping online — the Lightning Network exists precisely to address this. Lightning is a second layer built on top of Bitcoin that allows near-instant, very low-cost payments by opening payment channels between parties. We explore Lightning in more detail in Chapter 8.

The key mental model: Bitcoin's base layer is optimized for settlement — final, secure, irreversible transfer of value. Lightning and other second layers are optimized for payments — speed and low cost. Both have a role, and using the right one for the right use case makes Bitcoin practical.

A Note on Energy Use

Bitcoin's proof-of-work mechanism consumes substantial amounts of electricity — a fact that generates both criticism and defence. Critics compare it to the energy footprint of small countries. Defenders argue the security and financial sovereignty it provides justify the cost, and that much mining uses surplus or renewable energy.

The Cambridge Centre for Alternative Finance publishes ongoing estimates of Bitcoin's electricity consumption. As of 2025, Bitcoin's estimated annual energy use sits between 100 and 150 terawatt-hours — less than half of one percent of global electricity production. For context, gold mining and the traditional banking system each consume comparable or greater amounts of energy when fully accounted for.

This debate matters because European regulators have raised concerns about proof-of-work systems, and the EU considered (but did not ultimately pass) provisions restricting proof-of-work mining. The conversation will continue as Bitcoin's energy profile evolves and renewable energy integration in mining grows.

Risk Note

Bitcoin's design means payments cannot be reversed. There is no dispute resolution, no chargebacks, no support line. This is both a feature and a risk. It defends against censorship and third-party interference. It also means mistakes are permanent.

The 10-minute confirmation time and variable fees mean Bitcoin is not always the best tool for every payment scenario. Understand what you are using it for before you send.

Reader Takeaway

  • The blockchain is a public ledger distributed across thousands of computers. Every transaction is visible and permanent.
  • Mining secures the network by making cheating more expensive than honesty. It also creates new Bitcoin.
  • Transactions are secured by private keys. Your private key is the proof of ownership. Guard it accordingly.
  • Proof of work is Bitcoin's security mechanism. Its energy cost is what makes that security real.
  • Bitcoin can be slow or expensive during high demand. Lightning Network handles small, fast payments.

Chapter Summary

  • The blockchain is a shared public ledger maintained by thousands of computers worldwide. Once a transaction is confirmed, it cannot be undone.
  • Mining is a competitive process where computers solve mathematical puzzles to add blocks and earn Bitcoin rewards. This simultaneously creates new coins and secures the network.
  • Every transaction requires a digital signature from your private key. The public key (and address derived from it) can be shared freely. The private key must be kept secret.
  • Proof of work makes cheating the network more expensive than honest participation — this is the source of Bitcoin's security.
  • Block space is limited and demand varies. Fees rise when the network is busy. Lightning Network offers a fast, cheap alternative for small payments.

References

  • Nakamoto, S. (2008). Bitcoin: A Peer-to-Peer Electronic Cash System. bitcoin.org
  • Antonopoulos, A. (2017). Mastering Bitcoin. O'Reilly
  • Narayanan, A. et al. (2016). Bitcoin and Cryptocurrency Technologies. Princeton University Press
  • Blockchain.com charts: average block size and confirmation times
  • Cambridge Centre for Alternative Finance: Bitcoin Electricity Consumption Index

Was this helpful? Continue with the next chapter via the sidebar.