TX_COUNT | USER_COUNT | VOLUME | TX_FEES | SUCCEED_TXNS | SUCCESS_RATE | AVG_FEE_PER_TX | |
---|---|---|---|---|---|---|---|
1 | 222142691 | 7266231 | 10780916076.0929 | 2038583.01590118 | 216475930 | 97.449 | 0.009176879313 |
elsinatotal amount
Updated 2025-03-08
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select
count(distinct tx_hash) as tx_count,
count(distinct from_address) as user_count,
sum(value) as volume,
sum(tx_fee) as tx_fees,
count(distinct case when TX_SUCCEEDED = 'TRUE' then tx_hash end ) as succeed_txns,
(succeed_txns / tx_count ) * 100 as success_rate,
avg(tx_fee) as avg_fee_per_tx
from monad.testnet.fact_transactions
Last run: 12 days ago
1
87B
15s