Updated 2025-02-22
    WITH total_unique_wallets AS (
    SELECT
    COUNT(DISTINCT from_address) AS total_unique_users
    FROM MONAD.testnet.fact_transactions
    WHERE block_timestamp >= '2025-02-19 15:00:00.000' -- شروع تست‌نت
    )
    SELECT
    total_unique_users
    FROM total_unique_wallets;
    Last run: about 1 month ago
    TOTAL_UNIQUE_USERS
    1
    791971
    1
    10B
    2s