AephiaSAGE upgrading activity
    Updated 1 day ago
    WITH atlas_claimed AS (
    SELECT
    player_profile
    ,faction


    FROM $query('3a486211-ccfe-470d-9cf8-a55e4cf39f8d')
    GROUP BY 1,2
    )



    ,upgrading AS (
    select
    date_trunc('day', block_timestamp::date) as date
    ,count(distinct instruction:accounts[16]) as profiles
    ,count(distinct case when faction = 'MUD'
    then instruction:accounts[16] end) as MUD_profiles
    ,count(distinct case when faction = 'ONI'
    then instruction:accounts[16] end) as ONI_profiles
    ,count(distinct case when faction = 'USTUR'
    then instruction:accounts[16] end) as USTUR_profiles
    ---------------------------------------------------------------
    from atlas_claimed
    ,solana.core.fact_events
    WHERE program_id = 'SAGE2HAwep459SNq61LHvjxPk4pLPEJLoMETef7f7EE'
    AND succeeded = 'true'
    AND player_profile = instruction:accounts[16]
    AND instruction:accounts[21] = 'LPkmmDQG8iBDAfKkWN6QadeoiLSvD1p3fGgq8m8QdMu'
    AND block_timestamp > '2024-04-01' AND block_timestamp < current_date

    group by 1


    )
    Last run: 1 day ago
    DATE
    DAU
    MUD_DAU
    ONI_DAU
    USTUR_DAU
    DAU_1W_AVG
    DAU_1M_AVG
    1
    2025-04-20 00:00:00.000813126247489
    2
    2025-04-19 00:00:00.000813126247490
    3
    2025-04-18 00:00:00.000692323237491
    4
    2025-04-17 00:00:00.000723116257792
    5
    2025-04-16 00:00:00.00071358288093
    6
    2025-04-15 00:00:00.000703612228493
    7
    2025-04-14 00:00:00.000753221228893
    8
    2025-04-13 00:00:00.000823128239094
    9
    2025-04-12 00:00:00.000773027209194
    10
    2025-04-11 00:00:00.000914428199194
    11
    2025-04-10 00:00:00.000964529229094
    12
    2025-04-09 00:00:00.0001004531249194
    13
    2025-04-08 00:00:00.000974927219094
    14
    2025-04-07 00:00:00.000885017219094
    15
    2025-04-06 00:00:00.000855512189294
    16
    2025-04-05 00:00:00.000815413149595
    17
    2025-04-04 00:00:00.000855214199696
    18
    2025-04-03 00:00:00.000995920209797
    19
    2025-04-02 00:00:00.000945623159698
    20
    2025-04-01 00:00:00.000955823149698
    ...
    382
    18KB
    39s