Transaction counts are easy to find. What nobody tracks is whether a growing chain keeps the parallelism it was designed for. pev traces every block, so we can watch throughput, the number of contracts actually running, and execution health together.
Window7d30d90dall (123d)pev has indexed from 2026-04-25 · 137d of chain history
This is the pair that matters. Throughput can grow while the chain quietly does more duplicate work: every conflict is a transaction Monad executed, threw away, and ran again. Watching the two together is the only way to tell real scaling from busywork.
Parallel execution
How many waves does a block need?
avg 4.82 waves
Monad executes a block in waves: everything that can run together runs together, then whatever was blocked runs next. One wave means perfect parallelism. This is what the score is actually made of, it's 100 × (1 − waves / stateful txs), so wave depth is the parallelism.
Share of slot-attributed conflicts, measured, not projected. A single conflict can involve more than one slot, so this is each slot's share of all slot-level contention rather than of the block conflict count. We deliberately don't claim what the parallelism score would become if these were fixed: the score derives from wave depth, and how removing a conflict collapses a wave depends on the rest of the block.
Block capacity
How full are Monad's blocks?
7d with gas data
10.4%of the available block gas is being used. Headroom is what a chain has left before contention starts costing real throughput.
12.27 % of gas limit2026-09-025,427,638 txs · 285,693 blocksscore 75.7 · 18.07 conflicts/block
10.2 % of gas limit2026-09-035,053,938 txs · 286,160 blocksscore 72.3 · 18.73 conflicts/block
8.01 % of gas limit2026-09-044,847,428 txs · 285,095 blocksscore 71.8 · 16.31 conflicts/block
9.27 % of gas limit2026-09-054,880,790 txs · 284,127 blocksscore 75.8 · 14.1 conflicts/block
10.18 % of gas limit2026-09-065,239,594 txs · 284,121 blocksscore 74.4 · 15.51 conflicts/block
12.09 % of gas limit2026-09-075,854,714 txs · 285,418 blocksscore 74 · 20.31 conflicts/block
10.82 % of gas limit2026-09-085,682,378 txs · 285,758 blocksscore 75.7 · 18.09 conflicts/block
block gas used, % of limit2026-09-02 → 2026-09-08
Gas capture started when this column was added, so this series begins later than the rest of the page. Re-executed transactions are absorbed by the chain, not billed to users, so this is a capacity measure, not a fee one.
Where does your contract sit?
The chain-wide numbers are an average of very different contracts. pev shows exactly which storage slots and methods drive your own contention, and whether a change you ship actually moved it.