fantasyAptos Monthly New Users
    Updated 2025-03-25
    WITH first_interaction AS (
    SELECT
    sender,
    MIN(block_timestamp) AS first_interaction_date
    FROM
    aptos.core.fact_transactions
    GROUP BY
    sender
    )
    SELECT
    DATE_TRUNC('month', fi.first_interaction_date) AS date,
    COUNT(DISTINCT fi.sender) AS new_users
    FROM
    first_interaction fi
    GROUP BY
    1
    ORDER BY
    1 DESC;
    Last run: 2 months ago
    DATE
    NEW_USERS
    1
    2025-03-01 00:00:00.0006576415
    2
    2025-02-01 00:00:00.00010366649
    3
    2025-01-01 00:00:00.00010494320
    4
    2024-12-01 00:00:00.0006281538
    5
    2024-11-01 00:00:00.0004703340
    6
    2024-10-01 00:00:00.0006104579
    7
    2024-09-01 00:00:00.0002731404
    8
    2024-08-01 00:00:00.0002076772
    9
    2024-07-01 00:00:00.0001871030
    10
    2024-06-01 00:00:00.0003314114
    11
    2024-05-01 00:00:00.0001187883
    12
    2024-04-01 00:00:00.0001244032
    13
    2024-03-01 00:00:00.0001659120
    14
    2024-02-01 00:00:00.0001120175
    15
    2024-01-01 00:00:00.0001250836
    16
    2023-12-01 00:00:00.000650709
    17
    2023-11-01 00:00:00.000480012
    18
    2023-10-01 00:00:00.0001004735
    19
    2023-09-01 00:00:00.000671233
    20
    2023-08-01 00:00:00.0001496248
    31
    1KB
    113s