0xHaM-dBlock Time
    Updated 2025-03-21
    with evenTb 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_traces b
    where a.block_number = b.block_number-1
    -- and a.block_timestamp::date >= '2023-08-15'
    -- and b.block_timestamp::date >= '2023-08-15'
    group by 1
    )

    select
    date,
    avg(avg_time) as "Average Time"
    from evenTb a join ethereum.core.dim_dates b on a.date = b.date_day
    -- where date >= current_date() - 31
    -- AND date < current_date()
    group by 1
    Last run: 14 days ago
    DATE
    Average Time
    1
    2025-03-10 00:00:00.0000.52254
    2
    2025-01-14 00:00:00.0001.037664
    3
    2025-02-18 00:00:00.0000.493679
    4
    2025-02-01 00:00:00.0001.079938
    5
    2025-02-28 00:00:00.0000.513379
    6
    2025-03-11 00:00:00.0000.68583
    7
    2025-03-12 00:00:00.0000.839344
    8
    2025-02-03 00:00:00.0001.078426
    9
    2025-02-21 00:00:00.0000.502863
    10
    2025-01-25 00:00:00.0001.158453
    11
    2025-01-16 00:00:00.0001.038995
    12
    2025-02-04 00:00:00.0001.120358
    13
    2025-02-26 00:00:00.0000.592913
    14
    2025-03-06 00:00:00.0000.704833
    15
    2025-03-05 00:00:00.0000.754594
    16
    2025-02-09 00:00:00.0001.04687
    17
    2025-02-19 00:00:00.0000.521167
    18
    2025-03-16 00:00:00.0000.98582
    19
    2025-02-08 00:00:00.0001.077536
    20
    2025-02-16 00:00:00.0000.909869
    74
    3KB
    24s