aPrioriaPriori User Trend
    Updated 3 days ago

    WITH aprior_product_tag_dim AS (
    select
    FROM_ADDRESS as wallet
    ,'Exclusive LST User' as user_tag
    ,date(BLOCK_TIMESTAMP) as stat_date
    from monad.testnet.fact_transactions
    where TO_ADDRESS=lower('0xb2f82D0f38dc453D596Ad40A37799446Cc89274A')
    group by 1,3
    union all
    select
    TO_ADDRESS as wallet
    ,'Exclusive Faucet User' as user_tag
    ,date(BLOCK_TIMESTAMP) as stat_date
    from monad.testnet.fact_transactions
    where FROM_ADDRESS=lower('0xD7a24d1F1435CD314E86736E139f8431D4498D4e')
    group by 1,3
    ),



    base_user_dim as
    (
    SELECT
    wallet,
    CASE
    WHEN COUNT(DISTINCT user_tag) > 1 THEN 'Both User Groups'
    ELSE MAX(user_tag)
    END as base_user_tag
    ,min(stat_date) as create_date
    FROM aprior_product_tag_dim
    GROUP BY wallet
    ),

    Last run: 3 days ago
    CREATE_DATE
    DAILY_USERS
    LST_DAILY_USERS
    FAUCET_DAILY_USERS
    BOTH_USER_GROUPS_DAILY_USERS
    CUMULATIVE_USERS
    CUMULATIVE_LST_DAILY_USERS
    CUMULATIVE_FAUCET_DAILY_USERS
    CUMULATIVE_BOTH_USER_GROUPS_DAILY_USERS
    1
    2025-02-18 00:00:00.00081523312813
    2
    2025-02-19 00:00:00.000224254751487312801224584763488112814
    3
    2025-02-20 00:00:00.00046560270234219153186901831786910028132
    4
    2025-02-21 00:00:00.000291752856706089819360353910028740
    5
    2025-02-22 00:00:00.000294352839238865512762888745948829395
    6
    2025-02-23 00:00:00.0003894837756951097166576126501958330492
    7
    2025-02-24 00:00:00.00043625415144121699210201168015999532191
    8
    2025-02-25 00:00:00.00012922112768325212863394222956981024733477
    9
    2025-02-26 00:00:00.000295304291359120127446347265870571144836221
    10
    2025-02-27 00:00:00.00010811210669534210757428386937521179037296
    11
    2025-02-28 00:00:00.00064966644081354238078047581601192537719
    12
    2025-03-01 00:00:00.000544595333212510028622638114921205038721
    13
    2025-03-02 00:00:00.00066525659061234969287888773981217339217
    14
    2025-03-03 00:00:00.000945309332579141410233189707231296439631
    15
    2025-03-04 00:00:00.00099762982831048431112308010690061401240062
    16
    2025-03-05 00:00:00.0004643245488159785116951211144941417140847
    17
    2025-03-06 00:00:00.0004776346887239637121727511613811441041484
    18
    2025-03-07 00:00:00.0004458044194159227126185512055751456941711
    19
    2025-03-08 00:00:00.0003571735078405234129757212406531497441945
    20
    2025-03-09 00:00:00.00037452374092122133502412780621499541967
    28
    2KB
    28s