Moetps
    Updated 2023-09-10
    select
    date(block_timestamp) as date,
    'SEI' as network,

    count(distinct tx_id) as tx_count,
    tx_count/86400 as tps,
    tx_count/24 as tph,
    tx_count/1440 as tpm


    from SEI.core.fact_transactions
    where block_timestamp::date >= '2023-08-15'
    group by 1

    union ALL


    select
    date(block_timestamp) as date,
    'Optimism' as network,

    count(distinct tx_hash) as tx_count,
    tx_count/86400 as tps,
    tx_count/24 as tph,
    tx_count/1440 as tpm


    from Optimism.core.fact_transactions
    where block_timestamp::date >= '2023-08-15'
    group by 1

    union ALL



    select
    Run a query to Download Data