Josh956new user count
    Updated 2023-02-20
    with a as (select trader, min(date_trunc('day', block_timestamp)) as min_day
    from near.core.ez_dex_swaps
    where block_timestamp>='2022-12-25'
    group by 1)

    select count(*) as amt
    from a