KuramaBlock utilization both in AVAX and ETH
    Updated 2022-08-24
    -- max number of transactions in a single block AVAX (360)

    --select max(tx_count) from avalanche.core.fact_blocks

    -- avg number of transactions per block in AVAX

    /*
    select to_date(block_timestamp) as date, avg(tx_count) as avg_transactions_per_block from avalanche.core.fact_blocks
    group by date
    order by date
    */


    -- avg number of transactions per block in ETH

    /*
    select to_date(block_timestamp) as date, avg(tx_count) as avg_transactions_per_block from ethereum.core.fact_blocks
    where to_date(block_timestamp) between current_date - 116 and current_date
    group by date
    order by date

    */

    -- max number of transactions in a single block ETH all time (1431)

    -- select max(tx_count) from ethereum.core.fact_blocks

    -- max number of transactions in a single block ETH (same period as AVAX) (1414)

    --select max(tx_count) from ethereum.core.fact_blocks
    --where to_date(block_timestamp) between current_date - 116 and current_date

    -- avg number of transactions per block in AVAX -> hourly, we see a trend

    --select date_trunc('hour', block_timestamp) as date, avg(tx_count) as avg_transactions_per_block from avalanche.core.fact_blocks
    --group by date
    Run a query to Download Data