Sandeshtraded volume comparison
    Updated 2022-06-29
    select block_timestamp::date as "date", platform, sum(AMOUNT_IN_USD) as amount from ethereum.core.ez_dex_swaps
    where event_name ='Swap'
    and "date" >CURRENT_DATE - interval '1 months'
    group by 1,2

    Run a query to Download Data