algoinsightsSUSHISWAP TOTAL OPTIMISM MONTHLY USERS (2024)
    Updated 2024-08-29
    -- forked from freeman_7 / UNISWAP TOTAL ARBITRUM MONTHLY USERS (2024) @ https://flipsidecrypto.xyz/freeman_7/q/uVCLl8ylUJnS/uniswap-total-arbitrum-monthly-users-2024

    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 optimism.defi.ez_dex_swaps
    where platform like 'sushiswap%'
    and block_timestamp::date > '2023-12-31'
    group by month,month_order
    order by month


    QueryRunArchived: QueryRun has been archived