fantasyAptos Monthly Active Users
    Updated 2025-03-26
    SELECT
    DATE_TRUNC ('month', block_timestamp) AS date,
    COUNT(DISTINCT sender) AS monthly_active_users
    FROM
    aptos.core.fact_transactions
    GROUP BY
    1
    ORDER BY
    1 DESC;
    Last run: about 2 months ago
    DATE
    MONTHLY_ACTIVE_USERS
    1
    2025-03-01 00:00:00.00012271519
    2
    2025-02-01 00:00:00.00015144585
    3
    2025-01-01 00:00:00.00016039066
    4
    2024-12-01 00:00:00.00010353849
    5
    2024-11-01 00:00:00.0008263438
    6
    2024-10-01 00:00:00.0008117692
    7
    2024-09-01 00:00:00.0004031995
    8
    2024-08-01 00:00:00.0003043929
    9
    2024-07-01 00:00:00.0002703760
    10
    2024-06-01 00:00:00.0003922504
    11
    2024-05-01 00:00:00.0001607322
    12
    2024-04-01 00:00:00.0001882774
    13
    2024-03-01 00:00:00.0002507347
    14
    2024-02-01 00:00:00.0001565952
    15
    2024-01-01 00:00:00.0001623793
    16
    2023-12-01 00:00:00.000991615
    17
    2023-11-01 00:00:00.000747591
    18
    2023-10-01 00:00:00.0001527193
    19
    2023-09-01 00:00:00.000915011
    20
    2023-08-01 00:00:00.0001739992
    31
    1KB
    60s