MONTH | MONTH_NAME | Avg Time | |
---|---|---|---|
1 | 2025-01-01 00:00:00.000 | January | 1.02017196 |
2 | 2025-02-01 00:00:00.000 | February | 0.770059464286 |
3 | 2025-03-01 00:00:00.000 | March | 0.566702903226 |
4 | 2025-04-01 00:00:00.000 | April | 0.647653769231 |
hess8. Average Block Time
Updated 2025-04-13
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
with base as (select date(a.block_timestamp) as date,
avg(datediff(second,a.block_timestamp, b.block_timestamp)) as avg_time
from monad.testnet.fact_blocks a, monad.testnet.fact_blocks b
where a.BLOCK_NUMBER = b.BLOCK_NUMBER-1
group by 1)
select trunc(date,'month') as month,
month_name,
avg(avg_time) as "Avg Time"
from base a join crosschain.core.dim_dates b on a.date = b.date_day
group by 1,2
order by 1 asc
Last run: 13 days ago
4
206B
10s