Ali3NShare of New vs Existing avUSD Users on Avalanche Over Time
    Updated 2025-05-20
    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 = '0x24de8771bc5ddb3362db529fc3358f2df3a0e346')

    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: 26 days agoAuto-refreshes every 24 hours
    DATE
    TYPE
    USERS
    TRANSACTIONS
    1
    2025-05-20 00:00:00.000Existing Users1401064
    2
    2025-05-20 00:00:00.000New Users2828
    3
    2025-05-19 00:00:00.000Existing Users2071405
    4
    2025-05-19 00:00:00.000New Users4747
    5
    2025-05-18 00:00:00.000New Users6767
    6
    2025-05-18 00:00:00.000Existing Users2251431
    7
    2025-05-17 00:00:00.000New Users3636
    8
    2025-05-17 00:00:00.000Existing Users1611303
    9
    2025-05-16 00:00:00.000New Users3434
    10
    2025-05-16 00:00:00.000Existing Users1671246
    11
    2025-05-15 00:00:00.000New Users5454
    12
    2025-05-15 00:00:00.000Existing Users203982
    13
    2025-05-14 00:00:00.000New Users5656
    14
    2025-05-14 00:00:00.000Existing Users2021334
    15
    2025-05-13 00:00:00.000Existing Users1481019
    16
    2025-05-13 00:00:00.000New Users3939
    17
    2025-05-12 00:00:00.000New Users5353
    18
    2025-05-12 00:00:00.000Existing Users1701159
    19
    2025-05-11 00:00:00.000Existing Users129752
    20
    2025-05-11 00:00:00.000New Users2525
    ...
    300
    14KB
    94s