HadisehFLOW Speed (redux) 5
    Updated 2022-12-12
    with t1 as ( select date(block_timestamp) as date,
    'Flow' as chain,
    count(DISTINCT tx_id) as total_transaction,
    total_transaction/86400 as per_second,
    total_transaction/1440 as per_minute,
    total_transaction/24 as per_hour
    from flow.core.fact_transactions
    where date >= '2022-01-01'
    and TX_SUCCEEDED = 'TRUE'
    group by date,chain)
    ,
    t2 as ( select date(block_timestamp) as date,
    'Polygon' as chain,
    count(DISTINCT tx_hash) as total_transaction,
    total_transaction/86400 as per_second,
    total_transaction/1440 as per_minute,
    total_transaction/24 as per_hour
    from polygon.core.fact_transactions
    where date >= '2022-01-01'
    and STATUS = 'SUCCESS'
    group by date,chain)
    ,
    t3 as ( select date(block_timestamp) as date,
    'Arbitrum' as chain,
    count(DISTINCT tx_hash) as total_transaction,
    total_transaction/86400 as per_second,
    total_transaction/1440 as per_minute,
    total_transaction/24 as per_hour
    from arbitrum.core.fact_transactions
    where date >= '2022-01-01'
    and STATUS = 'SUCCESS'
    group by date,chain)
    ,
    t4 as ( select date(block_timestamp) as date,
    'Optimism' as chain,
    count(DISTINCT tx_hash) as total_transaction,
    Run a query to Download Data