GRAND_TOTAL_MON | |
---|---|
1 | 110170983.414735 |
JeffersTotal MON sent
Updated 2025-03-05
9
1
2
3
4
5
6
7
8
9
›
⌄
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
1
20B
8s