hess8. Average Block Time
    Updated 2025-04-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
    MONTH
    MONTH_NAME
    Avg Time
    1
    2025-01-01 00:00:00.000January1.02017196
    2
    2025-02-01 00:00:00.000February0.770059464286
    3
    2025-03-01 00:00:00.000March0.566702903226
    4
    2025-04-01 00:00:00.000April0.647653769231
    4
    206B
    10s