Updated 2025-04-11
    select
    date_trunc('day', block_timestamp) as date,
    count(distinct block_number) as blocks,
    sum(blocks) over (order by date) as cumulative_blocks
    from
    mezo.testnet.fact_blocks
    where date is not null
    group by 1
    order by 1
    Last run: 17 days ago
    DATE
    BLOCKS
    CUMULATIVE_BLOCKS
    1
    2025-03-28 00:00:00.00058335833
    2
    2025-03-29 00:00:00.0002360129434
    3
    2025-03-30 00:00:00.0002353952973
    4
    2025-03-31 00:00:00.0002366276635
    5
    2025-04-01 00:00:00.00023704100339
    6
    2025-04-02 00:00:00.00023635123974
    7
    2025-04-03 00:00:00.00022966146940
    8
    2025-04-04 00:00:00.00023517170457
    9
    2025-04-05 00:00:00.00023785194242
    10
    2025-04-06 00:00:00.00023733217975
    11
    2025-04-07 00:00:00.00023686241661
    12
    2025-04-08 00:00:00.00023732265393
    13
    2025-04-09 00:00:00.00022457287850
    14
    2025-04-10 00:00:00.00022973310823
    15
    2025-04-11 00:00:00.00011361322184
    15
    610B
    2s