permaryDaily Fantasy Top users
    Updated 5 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: 5 days ago
    Date
    Daily Active Users
    New Users
    Cumulative Unique Users
    Daily Transactions
    Cumulative Transactions
    1
    2025-04-09 00:00:00.000195144889677742664239032
    2
    2025-04-08 00:00:00.000159734617896329424464234766
    3
    2025-04-07 00:00:00.000237116585891712632754192320
    4
    2025-04-06 00:00:00.000268217842885127791704129045
    5
    2025-04-05 00:00:00.000259906411877285764174049875
    6
    2025-04-04 00:00:00.000299627581870874830103973458
    7
    2025-04-03 00:00:00.000200867062863293552303890448
    8
    2025-04-02 00:00:00.000119492329856231330143835218
    9
    2025-04-01 00:00:00.000177965864853902449133802204
    10
    2025-03-31 00:00:00.0004175498508480381050583757291
    11
    2025-03-30 00:00:00.0003542658258381881007463652233
    12
    2025-03-29 00:00:00.000151881074832363406303551487
    13
    2025-03-28 00:00:00.0004283336958312891214073510857
    14
    2025-03-27 00:00:00.0003275515535827594804153389450
    15
    2025-03-26 00:00:00.0002854115623812059595383309035
    16
    2025-03-25 00:00:00.000160155731796436408693249497
    17
    2025-03-24 00:00:00.0003573719724790705736873208628
    18
    2025-03-23 00:00:00.0003175710545770981868023134941
    19
    2025-03-22 00:00:00.00059189119947604361656553048139
    20
    2025-03-21 00:00:00.0003673494987484421183132882484
    63
    3KB
    82s