Core Concepts

Crypto Mining Explained

What miners actually do, the hardware involved, and how block rewards work.

Crypto mining is the process by which new transactions are added to a blockchain and new coins are issued — all secured by raw computational work. It sounds like digging for gold, and the metaphor is not entirely wrong: miners expend real-world resources in exchange for the chance to earn a reward, and the supply of that reward is deliberately limited.

Mining is central to how proof-of-work blockchains like Bitcoin stay trustworthy without a central authority. Understanding what miners actually do — and why — unlocks a lot about how decentralized money works in practice.

What Miners Actually Do

The word “mining” conjures images of computers solving puzzles, but the underlying task is specific. When users broadcast transactions, those transactions sit in a waiting area called the mempool. Miners gather a selection of pending transactions, bundle them into a candidate block, and then race to find a special number — called a nonce — that, when included in the block’s data and run through a cryptographic hash function, produces a hash output that meets a target condition set by the network.

That target condition is a hash that starts with a certain number of leading zeroes. The hash function is deterministic but unpredictable: there is no shortcut to finding a valid nonce other than trying billions of combinations per second until one works. When a miner finds it, they broadcast the completed block to the network.

Why does this matter for security? Changing even a single character in a past transaction would change that block’s hash, which would break every block that follows it. An attacker who wanted to rewrite history would need to redo all that computational work — not just for the tampered block, but for every block added since. As the chain grows, rewriting it becomes economically impractical.

The difficulty of the target adjusts automatically. Bitcoin, for example, recalibrates roughly every two weeks so that blocks arrive on average every ten minutes, regardless of how much or how little mining power is pointed at the network. More miners competing means the puzzle gets harder; miners dropping off means it gets easier.

The Hardware Involved

Mining has gone through several distinct hardware generations, each orders of magnitude more efficient than the last.

EraHardwareNotes
2009–2010CPUs (ordinary computer processors)Worked when Bitcoin was new and competition was minimal
2010–2013GPUs (graphics cards)Parallelism made them far faster at hashing than CPUs
2012–2013FPGAs (programmable chips)A short-lived middle ground between GPUs and custom silicon
2013–presentASICs (application-specific integrated circuits)Purpose-built chips that do almost nothing except hash; vastly more efficient

Today, Bitcoin mining at any meaningful scale uses ASICs. These machines consume significant electricity — a major operational cost — and produce considerable heat, which is why large mining operations are often located near cheap power sources such as hydroelectric dams, stranded natural gas facilities, or geothermal plants.

Some other proof-of-work coins deliberately choose hash algorithms that are harder to accelerate with ASICs, hoping to keep mining accessible to GPU hobbyists. Whether that design goal holds over time varies by coin and community.

Block Rewards and Transaction Fees

A miner who successfully finds a valid block receives two forms of compensation.

The Block Subsidy

The first is a block subsidy: newly created coins that did not exist before. This is literally how new bitcoin enters circulation. Bitcoin’s protocol hard-codes a schedule called the halving: approximately every four years (every 210,000 blocks), the subsidy is cut in half. Bitcoin launched with a 50 BTC subsidy per block; after several halvings it has dropped substantially, and eventually the subsidy will reach zero. At that point, miners will depend entirely on transaction fees. This scheduled scarcity is a deliberate feature of Bitcoin’s supply design.

Transaction Fees

The second source of income is the fees attached to transactions. Users who want their transactions confirmed quickly can attach higher fees to move to the front of the queue. Miners rationally select transactions that maximize their fee income. This is why, during periods of high network congestion, fees can spike significantly — everyone is effectively bidding for limited block space. Learning to read gas and fees helps you understand this dynamic across different blockchains.

Mining Pools

The probability of a solo miner finding a valid block on a large network like Bitcoin is, for most participants, vanishingly small. A single miner with modest hardware might wait years before winning a block reward. To smooth out this variance, miners join mining pools, where many participants contribute their hashing power collectively. When the pool finds a block, the reward is split among contributors in proportion to the work each contributed.

Pools introduce a coordination layer that is somewhat centralizing, which is a known tension in proof-of-work design. A pool (or coalition of pools) controlling more than half the network’s total hash rate could theoretically attempt a 51% attack — the ability to double-spend or censor transactions. In practice, the economic cost of attacking a large network makes this difficult to pull off profitably, but it remains a real concern for smaller proof-of-work coins with less total hash rate.

Mining and Energy

The energy intensity of proof-of-work mining is one of the most debated aspects of the technology. Supporters argue that miners are incentivized to seek out the cheapest electricity, which often means otherwise-wasted energy, and that the security purchased by that energy expenditure is real and valuable. Critics argue the consumption is unjustifiable relative to the utility provided. This debate does not have a clean resolution; it hinges on value judgments about what the security of a neutral settlement layer is worth.

Proof-of-stake blockchains take a different approach entirely, replacing computational work with locked capital as the security mechanism — a trade-off with its own costs and benefits. Understanding both helps you reason clearly about the choices different networks have made.

Key Takeaways

  • Miners bundle pending transactions into candidate blocks and search for a nonce that produces a valid hash — a computationally intensive lottery with no mathematical shortcut.
  • Difficulty adjusts automatically so that blocks arrive at a predictable cadence regardless of how much hardware is competing.
  • Miners earn both a block subsidy (newly created coins) and transaction fees; in Bitcoin, the subsidy halves on a fixed schedule until it eventually reaches zero.
  • Modern Bitcoin mining uses purpose-built ASIC hardware and is dominated by large operations near cheap electricity sources.
  • Mining pools let many participants share rewards to reduce variance, but they introduce centralization pressure that the broader community monitors carefully.
  • Proof-of-work’s energy use is a genuine trade-off, not a bug or a feature in isolation — it is the cost of a specific kind of security guarantee.

Next up: Staking Explained