FatemeTheLadytime between blocks - AR
    Updated 2023-02-18
    with
    base aS (
    select
    date_trunc('hour', a.block_timestamp) as day,
    datediff(second, a.block_timestamp, b.block_timestamp) as time_between_blocks
    from
    arbitrum.core.fact_blocks a
    join arbitrum.core.fact_blocks b on a.block_number = b.block_number - 1
    where a.BLOCK_TIMESTAMP::date BETWEEN '2023-01-01' and '2023-02-10'
    )
    ,

    base2 aS (
    select
    date_trunc('hour', a.block_timestamp) as day,
    datediff(second, a.block_timestamp, b.block_timestamp) as time_between_blocks
    from
    optimism.core.fact_blocks a
    join optimism.core.fact_blocks b on a.block_number = b.block_number - 1
    where a.BLOCK_TIMESTAMP::date BETWEEN '2023-01-01' and '2023-02-10'
    )

    select
    'Arbitrum' as "blockchain",
    avg(time_between_blocks) as "Avg Time Between Blocks",
    max(time_between_blocks) as "Max Time Between Blocks",
    min(time_between_blocks) as "Min Time Between Blocks"
    from
    base

    UNION

    select
    'Optimism' as "blockchain",
    avg(time_between_blocks) as "Avg Time Between Blocks",
    max(time_between_blocks) as "Max Time Between Blocks",
    Run a query to Download Data