ML6Daily Average transactions done in a block on Networks
    Updated 2022-07-25
    select '1.Average transactions done in a block on Polygon : ' as lbl, sum(tx_count)/count(*) as val , to_date(block_timestamp::date)
    from polygon.core.fact_blocks
    where year(block_timestamp)=2022 and month(block_timestamp) > 4
    group by 3
    UNION
    select '2.Average transactions done in a block on Solana : ', sum(tx_count)/count(*) as val , to_date(block_timestamp::date)
    from solana.core.fact_blocks
    where year(block_timestamp)=2022 and month(block_timestamp) > 4
    group by 3
    UNION
    select '3.Average transactions done in a block on Flow : ', sum(tx_count)/count(*) as val , to_date(block_timestamp::date)
    from flow.core.fact_blocks
    where year(block_timestamp)=2022 and month(block_timestamp) > 4
    group by 3
    UNION
    select '4.Average transactions done in a block on Ethereum : ', sum(tx_count)/count(*) as val , to_date(block_timestamp::date)
    from ethereum.core.fact_blocks
    where year(block_timestamp)=2022 and month(block_timestamp) > 4
    group by 3
    UNION
    select '5.Average transactions done in a block on Optimism : ', sum(tx_count)/count(*) as val , to_date(block_timestamp::date)
    from optimism.core.fact_blocks
    where year(block_timestamp)=2022 and month(block_timestamp) > 4
    group by 3
    UNION
    select '6.Average time between blocks on Arbitrum : ', sum(tx_count)/count(*) as val , to_date(block_timestamp::date)
    from arbitrum.core.fact_blocks
    where year(block_timestamp)=2022 and month(block_timestamp) > 4
    group by 3
    Run a query to Download Data