Updated 2025-02-21
    WITH first_transactions AS (
    SELECT
    from_address,
    MIN(block_timestamp) AS first_tx_time
    FROM MONAD.testnet.fact_transactions
    WHERE block_timestamp >= '2025-02-19 15:00:00.000' -- ‌
    GROUP BY from_address
    )
    SELECT
    COUNT(DISTINCT from_address) AS total_unique_wallets
    FROM first_transactions;
    Last run: about 1 month ago
    TOTAL_UNIQUE_WALLETS
    1
    571803
    1
    10B
    2s