Skip to main content
DigitalFinances

Glossary · Crypto basics

What is Proof-of-work (PoW)?

The consensus mechanism Bitcoin uses to decide which version of the chain everyone agrees on. Miners burn electricity solving a puzzle; the longest valid chain wins.

Last updated April 30, 2026

How it works

Proof-of-work asks every miner to find a number (a "nonce") such that the SHA-256 hash of the proposed block plus that nonce starts with a target number of zeros. There's no shortcut — finding it requires brute-force trying billions of combinations per second. When a miner finds one, the work is easy for everyone else to verify (single hash) but hard to have produced (billions of hashes).

If two miners find competing valid blocks at almost the same time, the network briefly forks. The next block is built on whichever side a particular miner saw first. The chain with more cumulative work wins, and the orphaned block's transactions go back to the mempool to be re-included. This is why most exchanges wait 3–6 confirmations before crediting a Bitcoin deposit — the chance of a 6-block reorg is vanishingly small.

Example

Bitcoin's network hash rate as of 2024 hovers around 600 EH/s — that's 6 × 10²⁰ hash attempts per second across all miners worldwide. The current difficulty setting means it takes approximately that much work to find each block, on average every 10 minutes. To 51%-attack the chain (out-mine the entire honest network), you'd need to assemble more hash power than that — currently estimated at $10B+ in capital and hundreds of millions in daily electricity.

Why it matters

PoW is the original blockchain consensus mechanism — Satoshi's Bitcoin paper introduced it. Its strengths and weaknesses are well understood after 15+ years:

Strengths:

  • Track record of zero successful double-spends on Bitcoin since 2009
  • Permissionless validator set — anyone with hardware can mine
  • Security proportional to real economic cost of attack

Weaknesses:

  • Energy intensive (Bitcoin uses ~150 TWh/year)
  • Specialized hardware (ASICs) creates centralization pressure on manufacturing
  • Slow settlement (10-min blocks; 1 hour for "final")

Ethereum used PoW until September 2022, when it transitioned to proof-of-stake in "The Merge" — cutting energy use by ~99.95%. Bitcoin maintainers have shown no interest in following; PoW is a cultural and technical pillar of the project. Most newer chains have launched directly on PoS.

Related terms