NUM_BLOCKS | UNIQUE_USERS | PAID_FEES | MONAD_VOLUME | NUM_TXNS | AVG_TXN | |
---|---|---|---|---|---|---|
1 | 10411490 | 265076667 | 9345975.66848291 | 11293643415.3935 | 1156170116 | 10510637.418182 |
saeedmzn[Monad ] - Total
Updated 1 day ago
9
1
2
3
4
5
6
7
8
9
›
⌄
select
count (distinct BLOCK_NUMBER) num_blocks ,
count (distinct FROM_ADDRESS) unique_users ,
sum (TX_FEE) paid_fees ,
sum (VALUE) monad_volume ,
count (tx_hash) num_txns ,
num_txns / count (distinct BLOCK_TIMESTAMP::date) avg_txn
from monad.testnet.fact_transactions
Last run: 1 day ago
1
83B
89s