JeffersTotal MON sent
    Updated 2025-03-05
    SELECT SUM(t.value) AS grand_total_mon
    FROM monad.testnet.fact_transactions t
    LEFT JOIN monad.testnet.dim_contracts c
    ON t.to_address = c.address -- Check if receiver is a smart contract
    WHERE value > 0
    AND t.block_timestamp >= '2025-02-19 15:00'
    AND t.tx_succeeded = 'TRUE'
    AND c.address IS NULL -- Only keep EOAs (not in dim_contracts)
    AND t.from_address != t.to_address -- Exclude self-transfers
    Last run: about 1 month ago
    GRAND_TOTAL_MON
    1
    110170983.414735
    1
    20B
    8s