ally2023-07-13 03:13 PM
    Updated 2023-07-13
    select
    count(distinct(ORIGIN_FROM_ADDRESS)) as users,
    date_trunc('week', BLOCK_TIMESTAMp) as date
    from ethereum.core.ez_dex_swaps
    where PLATFORM ilike '%uniswap%'

    group by 2
    order by 2