Validator Latency vs. Block Time¶
An interactive feasibility calculator: find the point beyond which validators can't keep up. A freshly produced block must gossip across the validator set and execute before the next block is due.
How the model works¶
A validator keeps up only if a freshly produced block fully gossips across the validator set and executes before the next block is due:
- Gossip hops — blocks spread epidemically, reaching
Nvalidators in aboutceil(log2(N))rounds, each costing one network-latency hop. - Execution — either a fixed per-block time, or derived from throughput: a block at
TPSoverblock_timecarriesTPS × block_timetransactions, each costingperTxmicroseconds. - Headroom — the fraction of the block-time budget left after gossip and execution. Comfortable (green) above 25%, a tightening danger zone (yellow) below it, and falling behind (red) once
requiredexceeds the block time.
Note
This is a planning aid that models the gossip-plus-execution feasibility boundary. Real-world performance also depends on network topology, payload sizes, and consensus specifics — validate against measurements for your deployment.