misaghlbWhat's going on with Avalanche?
    Updated 2022-11-25
    select date_trunc('day', BLOCK_TIMESTAMP) as block_date,
    count(BLOCK_NUMBER) as block_count,
    86400 / count(BLOCK_NUMBER) as time_per_block
    from avalanche.core.fact_blocks
    group by 1
    order by 1 desc
    Run a query to Download Data