feyikemiDaily Active Wallets
    Updated 2025-03-26
    WITH daily_active AS (
    SELECT
    DATE_TRUNC('day', BLOCK_TIMESTAMP) AS Date,
    COUNT(DISTINCT FROM_ADDRESS) AS active_wallets
    FROM ronin.core.ez_token_transfers
    WHERE CONTRACT_ADDRESS = '0xf988f63bf26c3ed3fbf39922149e3e7b1e5c27cb'
    AND Date >= '2025-02-22'
    GROUP BY date
    ),

    wallet_first_seen AS (
    SELECT
    FROM_ADDRESS,
    MIN(DATE_TRUNC('day', BLOCK_TIMESTAMP)) AS first_seen_date
    FROM ronin.core.ez_token_transfers
    WHERE CONTRACT_ADDRESS = '0xf988f63bf26c3ed3fbf39922149e3e7b1e5c27cb'
    GROUP BY FROM_ADDRESS
    ),

    cumulative_wallets AS (
    SELECT
    first_seen_date,
    COUNT(*) AS new_wallets
    FROM wallet_first_seen
    GROUP BY first_seen_date
    )

    SELECT
    Date,
    active_wallets,
    SUM(COALESCE(c.new_wallets, 0)) OVER (ORDER BY d.date) AS cumulative_wallets
    FROM daily_active d
    LEFT JOIN cumulative_wallets c
    ON d.date = c.first_seen_date
    ORDER BY d.date DESC
    Last run: 2 months ago
    DATE
    ACTIVE_WALLETS
    CUMULATIVE_WALLETS
    1
    2025-03-26 00:00:00.000832383
    2
    2025-03-25 00:00:00.0001422371
    3
    2025-03-24 00:00:00.0001432350
    4
    2025-03-23 00:00:00.0001002328
    5
    2025-03-22 00:00:00.000962311
    6
    2025-03-21 00:00:00.0001492298
    7
    2025-03-20 00:00:00.0001992280
    8
    2025-03-19 00:00:00.0002582247
    9
    2025-03-18 00:00:00.0001742216
    10
    2025-03-17 00:00:00.0002682196
    11
    2025-03-16 00:00:00.0002082162
    12
    2025-03-15 00:00:00.0001842135
    13
    2025-03-14 00:00:00.0001832109
    14
    2025-03-13 00:00:00.0002142071
    15
    2025-03-12 00:00:00.0002392030
    16
    2025-03-11 00:00:00.0002942000
    17
    2025-03-10 00:00:00.0003581959
    18
    2025-03-09 00:00:00.0003391904
    19
    2025-03-08 00:00:00.0003511832
    20
    2025-03-07 00:00:00.0003411771
    33
    1KB
    2s