mariya Total swaps (Ethereum Vs Near)
    Updated 2022-11-04
    select 'NEAR',
    count(*) , date_trunc('month', block_timestamp) as date
    from near.core.ez_dex_swaps
    group by date
    UNION

    select 'ETHEREUM',
    count(*) , date_trunc('month', block_timestamp) as date
    from ethereum.core.ez_dex_swaps
    group by date
    Run a query to Download Data