freeman_7UNISWAP TOTAL POLYGON MONTHLY USERS (2024)
    Updated 2024-08-26
    select count(distinct origin_from_address) as Users,
    date_trunc('month',block_timestamp) as month,
    to_char(date_trunc('month',block_timestamp),'mon') as month_order
    from polygon.defi.ez_dex_swaps
    where platform like 'uniswap%'
    and block_timestamp::date > '2023-12-31'
    group by month,month_order
    order by month

    QueryRunArchived: QueryRun has been archived