angel09-SK3z3aAverage Transactions of Block time on Ethereum (previous & after Merge)
    Updated 2022-09-26
    select avg(tx_count) , 'before 9-15' from ethereum.core.fact_blocks
    where block_timestamp::date < '2022-09-15'

    union all

    select avg(tx_count) , 'after 9-15' from ethereum.core.fact_blocks
    where block_timestamp::date >= '2022-09-15'
    Run a query to Download Data