Updated 2022-10-31
    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