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.
Dashed lines mark Monad node releases in this window. They are GitHub publish dates, not mainnet activation, and chain-wide numbers move with what dapps do as much as with the client. Read them as context for correlation, not as cause.
Parallel execution
How many waves does a block need?
avg 4.34 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?
30d with gas data
9.4%of the available block gas is being used. Headroom is what a chain has left before contention starts costing real throughput.
6.83 % of gas limit2026-08-104,098,379 txs · 285,991 blocksscore 75.6 · 7.97 conflicts/block
7.11 % of gas limit2026-08-114,057,478 txs · 286,123 blocksscore 76.2 · 7.37 conflicts/block
6.38 % of gas limit2026-08-123,902,965 txs · 283,565 blocksscore 76.7 · 6.84 conflicts/block
6.63 % of gas limit2026-08-133,797,436 txs · 286,091 blocksscore 77.5 · 5.67 conflicts/block
6.59 % of gas limit2026-08-143,554,867 txs · 286,191 blocksscore 74.4 · 6.56 conflicts/block
4.89 % of gas limit2026-08-152,932,737 txs · 286,300 blocksscore 75.2 · 3.19 conflicts/block
4.19 % of gas limit2026-08-162,811,117 txs · 286,248 blocksscore 73.4 · 3.41 conflicts/block
5.9 % of gas limit2026-08-173,570,156 txs · 285,870 blocksscore 73.2 · 7.56 conflicts/block
6.87 % of gas limit2026-08-183,769,334 txs · 284,111 blocksscore 73.3 · 8.79 conflicts/block
9.35 % of gas limit2026-08-194,886,266 txs · 274,785 blocksscore 75.3 · 15.5 conflicts/block
11.09 % of gas limit2026-08-206,225,850 txs · 283,680 blocksscore 75.3 · 22.81 conflicts/block
12.52 % of gas limit2026-08-216,679,272 txs · 283,241 blocksscore 75.3 · 24.84 conflicts/block
10.75 % of gas limit2026-08-226,291,874 txs · 286,064 blocksscore 76.8 · 19.03 conflicts/block
10.07 % of gas limit2026-08-235,383,686 txs · 281,970 blocksscore 76.2 · 15.48 conflicts/block
12.49 % of gas limit2026-08-246,369,409 txs · 283,215 blocksscore 75.9 · 22.18 conflicts/block
v0.16.111.61 % of gas limit2026-08-25Monad v0.16.1 released5,771,982 txs · 284,884 blocksscore 75.6 · 18.65 conflicts/block
10.89 % of gas limit2026-08-265,367,742 txs · 286,034 blocksscore 74.8 · 16.39 conflicts/block
10.97 % of gas limit2026-08-275,494,002 txs · 284,180 blocksscore 74.3 · 17.94 conflicts/block
11.13 % of gas limit2026-08-285,499,005 txs · 285,208 blocksscore 74.9 · 18.09 conflicts/block
8.42 % of gas limit2026-08-293,764,947 txs · 256,755 blocksscore 76.6 · 8.74 conflicts/block
9.68 % of gas limit2026-08-304,881,245 txs · 279,906 blocksscore 76.4 · 14.57 conflicts/block
12.18 % of gas limit2026-08-315,802,640 txs · 286,184 blocksscore 76.1 · 17.63 conflicts/block
11.71 % of gas limit2026-09-015,496,723 txs · 286,103 blocksscore 75.7 · 16.59 conflicts/block
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-08-10 → 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.