HadisehSeasons in the City 1
    Updated 2022-10-19
    select block_timestamp::date as date ,
    count(distinct trader) as total_swapper ,
    sum(total_swapper) over (order by date asc) as cumulative_swapper,
    platform
    from near.core.ez_dex_swaps
    where date > CURRENT_DATE - 90
    group by date,platform
    Run a query to Download Data