NuveveCryptoArchivedArbitrum vs BSC Fees Paid
    Updated 2022-07-03
    with arb as (
    select
    block_timestamp::date as date,
    sum(tx_fee) as tx_fee
    from arbitrum.core.fact_transactions
    where block_timestamp > '2022-06-20 00:00'
    and block_timestamp < '2022-06-27 01:00'
    group by date
    ),

    bsc as (
    select
    block_timestamp::date as date,
    sum(tx_fee) as tx_fee
    from bsc.core.fact_transactions
    where block_timestamp > '2022-06-20 00:00'
    and block_timestamp < '2022-06-27 01:00'
    group by date
    )

    select
    arb.date as date,
    arb.tx_fee as arbitrum,
    bsc.tx_fee as bsc
    from arb
    inner join bsc on arb.date = bsc.date

    Run a query to Download Data