Active Days | # of Wallets | # of TXs | Total Fee-$BTC | Volume-$BTC | |
---|---|---|---|---|---|
1 | 33 | 29998 | 469757 | 0.4540905102 | 462.741610699 |
SalehTotal
Updated 2025-04-30
9
1
2
3
4
5
6
7
8
›
⌄
select
count(distinct block_timestamp::date) as "Active Days"
,count(distinct from_address) as "# of Wallets"
,count(distinct tx_hash) as "# of TXs"
,sum(TX_FEE_PRECISE) as "Total Fee-$BTC"
,sum(VALUE) as "Volume-$BTC"
from mezo.testnet.fact_transactions
where TX_SUCCEEDED
Last run: about 1 month ago
1
46B
1s