Block Time
Block time is the average interval between consecutive blocks being added to a blockchain — effectively the heartbeat of the network, determining how often new batches of transactions are confirmed. Each chain targets a different rhythm: Bitcoin aims for roughly ten minutes, Ethereum produces a block every twelve seconds on a fixed schedule, and some high-throughput chains like Solana target well under a second.
How block time is maintained differs by consensus design. Proof-of-work chains cannot schedule blocks — mining is a random lottery — so they adjust the puzzle difficulty periodically to keep the average on target; individual Bitcoin blocks can arrive seconds or over an hour apart even though the average stays near ten minutes. Many proof-of-stake chains instead use fixed "slots," so blocks arrive on a regular tick unless a validator misses its turn. For example, if you pay with bitcoin, your transaction gets its first confirmation whenever the next block happens to be found, and merchants often wait for several blocks — tens of minutes — before treating a large payment as settled.
A common misconception is that a shorter block time simply makes a chain better; faster blocks confirm sooner but propagate less cleanly across the network, causing more orphaned blocks and weaker individual confirmations, so security-per-block drops. Block time is one lever among several — block size, finality rules, layer-2 designs — and chains choose different points on the speed-versus-robustness trade-off rather than one being objectively correct.
Related terms