0xHaM-dNew and Returning Users
    Updated 2025-03-27
    with eventTb as (
    select
    EVENT_NAME,
    BLOCK_TIMESTAMP,
    TX_HASH,
    DECODED_LOG,
    DECODED_LOG:beneficiary::string as user_add,
    DECODED_LOG:collateral_amount::float/1e6 as collateral_amount_usdc,
    DECODED_LOG:avusd_amount::float/1e18 as avusd_amount,
    from avalanche.core.ez_decoded_event_logs
    where CONTRACT_ADDRESS = '0x1499cb3197427b78dc0e2d356a1e0e4149e0ed51'
    and EVENT_NAME in ('Mint', 'Redeem')
    and TX_SUCCEEDED = TRUE
    )
    ,
    active_users_u as (
    SELECT
    date_trunc('day', block_timestamp) as date,
    count(DISTINCT user_add) as active_users
    FROM eventTb
    GROUP BY date
    )
    , new as (
    SELECT
    date_trunc('day', first_tx) as date,
    count(DISTINCT user) as new_user
    FROM (
    SELECT
    user_add as user,
    min(block_timestamp) as first_tx
    FROM eventTb
    GROUP BY 1
    )
    GROUP BY 1
    )

    Last run: 2 months ago
    DATE
    ACTIVE_USERS
    N_NEW_USER
    CUM_USERS
    RECURRING_USER
    NEW_USER_PERCENT
    RECURRING_USER_PERCENT
    Avg Active Users
    AVARAGE_7_ACTIVE_USERS
    Avg New User
    AVARAGE_7_NEW_USER
    1
    2025-03-25 00:00:00.00020283201005.1304351.5713.0760870.857
    2
    2025-03-24 00:00:00.00010283101005.1648351.5713.109891
    3
    2025-03-23 00:00:00.00011283010005.2111111.7143.1444441.285
    4
    2025-03-22 00:00:00.00021282150505.2584271.8573.1685391.285
    5
    2025-03-20 00:00:00.00022281010005.2954553.5713.1931822.571
    6
    2025-03-19 00:00:00.00011279010005.3333334.5713.2068973.571
    7
    2025-03-18 00:00:00.00021278150505.3837215.1423.2325583.428
    8
    2025-03-16 00:00:00.00021277150505.4235295.1423.2588243.428
    9
    2025-03-15 00:00:00.00022276010005.4642865.4283.2857143.571
    10
    2025-03-14 00:00:00.00021274150505.5060245.4283.3012053.428
    11
    2025-03-13 00:00:00.0001410273471.42857128.5714295.548785.7143.3292683.571
    12
    2025-03-12 00:00:00.00099263010005.4444444.1423.2469142.428
    13
    2025-03-11 00:00:00.00050254501005.43.2853.1751.285
    14
    2025-03-10 00:00:00.00021254150505.4050632.7143.215191.285
    15
    2025-03-09 00:00:00.00042253250505.4487182.7143.243591.142
    16
    2025-03-08 00:00:00.00021251150505.4675322.4283.259740.857
    17
    2025-03-07 00:00:00.00042250250505.51315833.2894741.142
    18
    2025-03-05 00:00:00.00032248166.66666733.3333335.5333332.8573.3066670.857
    19
    2025-03-04 00:00:00.00031246233.33333366.6666675.5675683.4283.3243241
    20
    2025-03-03 00:00:00.00010245101005.602744.8573.3561641.857
    92
    7KB
    5s