Loading your lesson...
Module 8: Bitcoin Technology
Bitcoin uses Proof of Work, or PoW, to decide who gets to propose the next block to the blockchain. Miners perform a specific set of tasks. They collect valid transactions from the mempool, which is the waiting area for unconfirmed transactions. They build a candidate block that includes the transaction list, the hash of the previous block which links it to history, and a special transaction that pays the block reward and fees to the miner. Then they compete to find a valid block hash. The PoW goal is straightforward: miners repeatedly hash the block data while changing a small value called a nonce. A block is valid only if its hash is below a target number set by the Bitcoin network. Finding a hash below the target takes many attempts. But checking whether a hash is below the target is fast and easy. This asymmetry is the key insight. Miners are not solving a math problem that reveals a secret. They are proving they spent real computational energy by finding a rare hash result. This is what makes Proof of Work trustworthy: it is hard to produce but easy to verify.
