0xHaM-dLast 10 Steps of Avalanche9000 Post Upgrade Users
    Updated 2025-03-27
    with first10_steps as (
    SELECT
    LABEL_TYPE,
    ORIGIN_FROM_ADDRESS as user,
    ROW_NUMBER() OVER (PARTITION BY ORIGIN_FROM_ADDRESS ORDER BY block_timestamp ASC) as step
    FROM avalanche.core.fact_event_logs
    JOIN avalanche.core.dim_labels on CONTRACT_ADDRESS = ADDRESS
    WHERE LABEL_TYPE not in ('cex','token','operator')
    AND BLOCK_TIMESTAMP::date > '2024-12-16 17:00:00.000'
    QUALIFY step <= 10
    )

    SELECT
    LABEL_TYPE as sector,
    step,
    COUNT(DISTINCT user) as n_users
    FROM first10_steps
    GROUP BY 1, 2
    ORDER BY 2





    Last run: 3 months ago
    SECTOR
    STEP
    N_USERS
    1
    dapp165491
    2
    games110151
    3
    bridge1578707
    4
    nft14079
    5
    dex1414687
    6
    defi1114150
    7
    dapp254680
    8
    dex2417860
    9
    bridge2308478
    10
    nft23347
    11
    defi2104811
    12
    games29203
    13
    games38817
    14
    defi3102698
    15
    nft33080
    16
    dex3345887
    17
    dapp331866
    18
    bridge3257114
    19
    nft42914
    20
    games48589
    60
    1KB
    13s