TRANSACTIONS | USERS | VOLUME_FEE | AVERAGE_FEE | DAILY_AVERAGE_TRANSACTIONS | DAILY_AVERAGE_USERS | |
---|---|---|---|---|---|---|
1 | 16927361 | 42988 | 1108.382521207 | 0.00006547875098 | 13498.692982 | 34.280702 |
Afonso_DiazTotal
Updated 2025-04-03
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
from_address as user,
tx_fee
from
boba.core.fact_transactions
)
select
count(distinct tx_hash) as transactions,
count(distinct user) as users,
sum(tx_fee) as volume_fee,
avg(tx_fee) as average_fee,
transactions / count(distinct block_timestamp::date) as daily_average_transactions,
users / count(distinct block_timestamp::date) as daily_average_users
from
main
Last run: 30 days ago
1
73B
3s