superflyNear swaps
    Updated 2023-01-18
    select BLOCK_TIMESTAMP::date date,
    count(distinct TRADER) TRADERS,
    count(distinct PLATFORM) PLATFORMS,
    count(*) swaps
    from
    near.core.ez_dex_swaps
    where BLOCK_TIMESTAMP::date >= current_date() - 30
    group by 1
    Run a query to Download Data