HadisehCity Amidst the Storm 4
    Updated 2022-11-15
    select date(block_timestamp) as date,
    count(distinct tx_hash) as swap_count,
    sum(swap_count) over (order by date asc) as cumulative_swap
    from near.core.ez_dex_swaps
    where date between '2022-11-07' and '2022-11-14'
    group by 1
    Run a query to Download Data