Afonso_DiazTop users
Updated 2025-04-16
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
from_address as user,
tx_fee
from
sei.core_evm.fact_transactions
)
select
user,
count(distinct tx_hash) as transactions
from main
group by 1
order by 2 desc
limit 100
QueryRunArchived: QueryRun has been archived