elsinaDaily new users vs old users
    Updated 2025-01-19
    with users as (
    SELECT
    swapper,
    min(block_timestamp) as min_date
    from
    aptos.defi.ez_dex_swaps
    group by
    swapper
    ),

    new_users as (
    select
    date_trunc('day', min_date) as date,
    count(distinct swapper) as new_user_count
    from
    users
    where
    date >= '2025-01-01'
    group by
    date
    ),

    old_users as (
    select
    date_trunc('day', block_timestamp) as date,
    count(distinct
    case
    when swapper in (select swapper from users where date_trunc('day', min_date) = date_trunc('day', block_timestamp))
    then null
    else swapper
    end
    ) as old_user_count,
    count(distinct swapper) as total_user_count
    from
    aptos.defi.ez_dex_swaps
    Last run: 3 months ago
    DAILY
    OLD_USERS
    NEW_USERS
    PERCENT_NEW_USERS
    PERCENT_OLD_USERS
    1
    2025-01-01 00:00:00.0007565318529.62790697770.372093023
    2
    2025-01-02 00:00:00.0007975200220.0661521579.93384785
    3
    2025-01-03 00:00:00.0007097181820.39259674779.607403253
    4
    2025-01-04 00:00:00.0006057210525.79024748874.209752512
    5
    2025-01-05 00:00:00.0005043208929.29052159370.709478407
    6
    2025-01-06 00:00:00.0004551187529.17833800270.821661998
    7
    2025-01-07 00:00:00.0004816350942.1501501557.84984985
    8
    2025-01-08 00:00:00.0006035241128.54605730571.453942695
    9
    2025-01-09 00:00:00.0004803116219.4803017680.51969824
    10
    2025-01-10 00:00:00.000507290115.08454712984.915452871
    11
    2025-01-11 00:00:00.0003699345848.31633365951.683666341
    12
    2025-01-12 00:00:00.0003973158128.46597047271.534029528
    13
    2025-01-13 00:00:00.000424764513.18479149686.815208504
    14
    2025-01-14 00:00:00.000407870014.65048137385.349518627
    15
    2025-01-15 00:00:00.000468681014.73799126685.262008734
    16
    2025-01-16 00:00:00.0004183569957.67051204242.329487958
    17
    2025-01-17 00:00:00.000317981620.42553191579.574468085
    18
    2025-01-18 00:00:00.0003165192037.75811209462.241887906
    19
    2025-01-19 00:00:00.0003123151832.70846800367.291531997
    19
    1KB
    4s