TOTAL_TXS | DISTINCT_TXS | N_USERS | TOTAL_FEE | AVG_TOTAL_FEE | |
---|---|---|---|---|---|
1 | 20026656 | 20026155 | 7455379 | 200163.667538635 | 0.009994862225 |
0xHaM-dLast 24H
Updated 2025-03-21
99
1
2
3
4
5
6
7
8
9
10
›
⌄
select
count(*) as total_txs,
count(distinct tx_hash) as distinct_txs,
count(distinct from_address) as n_users,
sum(tx_fee) as total_fee,
avg(tx_fee) as avg_total_fee
from monad.testnet.fact_transactions
where block_timestamp >= CURRENT_DATE - INTERVAL '24 HOUR'
Last run: 15 days ago
1
61B
5s