ArioBase DEXs Users
    Updated 2023-11-02
    select
    date_trunc(day, block_timestamp)::date as day,
    platform,
    count(distinct ORIGIN_FROM_ADDRESS) as N_Users,
    sum(N_Users) over(partition by platform order by day) as Cum_Users
    from base.defi.ez_dex_swaps
    group by 1,2
    order by 1 asc
    Run a query to Download Data