TRANSACTIONS | USERS | FEE_VOLUME | AVERAGE_FEE_AMOUNT | |
---|---|---|---|---|
1 | 506220 | 31702 | 0.4544815501 | 8.977945362e-7 |
Afonso_DiazTotal
Updated 8 days ago
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
from_address as user,
tx_fee
from
mezo.testnet.fact_transactions
where
tx_succeeded
)
select
count(distinct tx_hash) as transactions,
count(distinct user) as users,
sum(tx_fee) as fee_volume,
avg(tx_fee) as average_fee_amount
from
main
Last run: 8 days ago
1
44B
2s