TOTAL_TRANSACTIONS | BLOCKS | USERS | FEES | |
---|---|---|---|---|
1 | 10025449 | 153269 | 1433921 | 109811.981834756 |
oxkimiarubber-yellow
Updated 2025-03-07
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
-- Transactions, Users, Blocks and Fees over the last 24 hours for Monad Testnet
SELECT
COUNT(DISTINCT tx_hash) AS total_transactions,
COUNT(DISTINCT block_number) AS blocks,
COUNT(DISTINCT from_address) AS users,
SUM(tx_fee) AS fees
FROM
monad.testnet.fact_transactions
WHERE
BLOCK_TIMESTAMP >= CURRENT_TIMESTAMP - INTERVAL '24 hours';
Last run: about 2 months ago
1
44B
1s