Ali3NDately New & Cumulative SwappersOver Time (Avalanche Chain Monitor)
    Updated 12 hours ago
    -- forked from Dately DEX Swaps Overview Over Time (Avalanche Chain Monitor) @ https://flipsidecrypto.xyz/studio/queries/5ca75191-d10f-46aa-8a2d-18701a9d48e3

    with dextable as (
    select block_timestamp,
    case when platform ilike '%trader-joe%' then 'Trader Joe'
    when platform ilike '%kyber%' then 'Kyberswap'
    when platform ilike '%uniswap%' then 'Uniswap'
    when platform ilike '%Pharaoh%' then 'Pharaoh'
    else initcap (platform) end as dex,
    origin_from_address as trader,
    coalesce (amount_in_usd,amount_out_usd,0) as volume
    from avalanche.defi.ez_dex_swaps)

    select date_trunc ({{Time_Interval}},mindate) as date,
    count (Distinct trader) as New_Traders,
    sum (new_traders) over (order by date) as Cumulative_Traders
    from (
    select trader,
    min (block_timestamp) as mindate
    from dextable
    group by 1)
    where mindate >= '{{From_Date}}' and mindate <= '{{To_Date}}'
    group by 1
    order by 1 desc




    Last run: about 12 hours agoAuto-refreshes every 24 hours
    DATE
    NEW_TRADERS
    CUMULATIVE_TRADERS
    1
    2025-06-16 00:00:00.00057983832564
    2
    2025-06-09 00:00:00.000368463826766
    3
    2025-06-02 00:00:00.000959943789920
    4
    2025-05-26 00:00:00.000288403693926
    5
    2025-05-19 00:00:00.000402903665086
    6
    2025-05-12 00:00:00.000295193624796
    7
    2025-05-05 00:00:00.000161493595277
    8
    2025-04-28 00:00:00.000100543579128
    9
    2025-04-21 00:00:00.000106153569074
    10
    2025-04-14 00:00:00.00074503558459
    11
    2025-04-07 00:00:00.00047963551009
    12
    2025-03-31 00:00:00.00091313546213
    13
    2025-03-24 00:00:00.000165363537082
    14
    2025-03-17 00:00:00.000133443520546
    15
    2025-03-10 00:00:00.000197963507202
    16
    2025-03-03 00:00:00.000144223487406
    17
    2025-02-24 00:00:00.000128443472984
    18
    2025-02-17 00:00:00.000153073460140
    19
    2025-02-10 00:00:00.000147673444833
    20
    2025-02-03 00:00:00.00071603430066
    ...
    228
    9KB
    182s