Ali3NShare of New vs Existing JACK Users on Avalanche Over Time
    Updated 3 hours ago
    with mintable as (
    select origin_from_address,
    block_timestamp,
    tx_hash,
    row_number () over (partition by origin_from_address order by block_timestamp asc) as rn
    from avalanche.core.ez_token_transfers
    where contract_address = '0x3fe4902b275caf603c46c81f3d921bb8515b5bc0')

    select Date_Trunc (day,block_timestamp) as date,
    case when rn = '1' then 'New Users' else 'Existing Users' end as type,
    count (distinct origin_from_address) as Users,
    count (distinct tx_hash) as Transactions
    from mintable
    group by 1,2
    order by 1 desc












    Last run: about 3 hours agoAuto-refreshes every 6 hours
    DATE
    TYPE
    USERS
    TRANSACTIONS
    1
    2025-06-16 00:00:00.000Existing Users59
    2
    2025-06-15 00:00:00.000New Users11
    3
    2025-06-15 00:00:00.000Existing Users1219
    4
    2025-06-14 00:00:00.000New Users11
    5
    2025-06-14 00:00:00.000Existing Users917
    6
    2025-06-13 00:00:00.000Existing Users1425
    7
    2025-06-13 00:00:00.000New Users22
    8
    2025-06-12 00:00:00.000Existing Users3069
    9
    2025-06-12 00:00:00.000New Users22
    10
    2025-06-11 00:00:00.000New Users44
    11
    2025-06-11 00:00:00.000Existing Users1844
    12
    2025-06-10 00:00:00.000New Users55
    13
    2025-06-10 00:00:00.000Existing Users1432
    14
    2025-06-09 00:00:00.000Existing Users2342
    15
    2025-06-08 00:00:00.000Existing Users1933
    16
    2025-06-08 00:00:00.000New Users33
    17
    2025-06-07 00:00:00.000Existing Users1632
    18
    2025-06-06 00:00:00.000New Users33
    19
    2025-06-06 00:00:00.000Existing Users1624
    20
    2025-06-05 00:00:00.000New Users11
    ...
    153
    7KB
    11s