TRANSACTIONS | FIRST_TXN | USERS | FEE_VOLUME | AVERAGE_FEE_AMOUNT | |
---|---|---|---|---|---|
1 | 108354742 | 2024-05-27 13:20:03.000 | 15754008 | 288079.086879383 | 0.00265866617 |
Afonso_DiazTotal
Updated 2025-04-16
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
from_address as user,
tx_fee
from
sei.core_evm.fact_transactions
where
status = 'SUCCESS'
and block_timestamp >= '2024-01-01'
)
select
count(distinct tx_hash) as transactions,
min(block_timestamp) as first_txn,
count(distinct user) as users,
sum(tx_fee) as fee_volume,
avg(tx_fee) as average_fee_amount
from
main
Last run: 17 days ago
1
79B
11s