permaryDaily Fantasy Top users
    Updated 6 days ago
    WITH daily_stats AS (
    SELECT
    date_trunc('day', block_timestamp) as "Date",
    origin_from_address as user_address,
    tx_hash
    FROM monad.testnet.fact_event_logs
    WHERE contract_address IN (
    LOWER('0x04edB399CC24a95672BF9B880EE550dE0b2D0B1e'),
    LOWER('0x9077D31A794D81c21b0650974d5F581F4000CD1a'),
    LOWER('0xfA4D5a9ceA2822BA08d0266F121011aC527ced64')
    )
    ),
    daily_active_users AS (
    SELECT
    "Date",
    COUNT(DISTINCT user_address) as active_users,
    COUNT(DISTINCT tx_hash) as daily_transactions
    FROM daily_stats
    GROUP BY "Date"
    ),
    user_first_seen AS (
    SELECT
    user_address,
    MIN("Date") as first_date
    FROM daily_stats
    GROUP BY user_address
    ),
    daily_new_users AS (
    SELECT
    first_date as "Date",
    COUNT(*) as new_users
    FROM user_first_seen
    GROUP BY first_date
    )

    SELECT
    Last run: 6 days ago
    Date
    Daily Active Users
    New Users
    Cumulative Unique Users
    Daily Transactions
    Cumulative Transactions
    1
    2025-04-15 00:00:00.000160185115938915343734558861
    2
    2025-04-14 00:00:00.000239228998933800572994524488
    3
    2025-04-13 00:00:00.000236557788924802621414467189
    4
    2025-04-12 00:00:00.000216959390917014575384405048
    5
    2025-04-11 00:00:00.000260479337907624680744347510
    6
    2025-04-10 00:00:00.0008037718898287219634279436
    7
    2025-04-09 00:00:00.00098141240897569227074257473
    8
    2025-04-08 00:00:00.000159734617896329424464234766
    9
    2025-04-07 00:00:00.000237116585891712632754192320
    10
    2025-04-06 00:00:00.000268217842885127791704129045
    11
    2025-04-05 00:00:00.000259906411877285764174049875
    12
    2025-04-04 00:00:00.000299627581870874830103973458
    13
    2025-04-03 00:00:00.000200867062863293552303890448
    14
    2025-04-02 00:00:00.000119492329856231330143835218
    15
    2025-04-01 00:00:00.000177965864853902449133802204
    16
    2025-03-31 00:00:00.0004175498508480381050583757291
    17
    2025-03-30 00:00:00.0003542658258381881007463652233
    18
    2025-03-29 00:00:00.000151881074832363406303551487
    19
    2025-03-28 00:00:00.0004283336958312891214073510857
    20
    2025-03-27 00:00:00.0003275515535827594804153389450
    69
    4KB
    89s