Afonso_DiazTop users
Updated 2025-01-15
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
from_address as user,
tx_fee
from
flow.core_evm.fact_transactions
where from_address not in ('0x0000000000000000000000020000000000000000', '0x0000000000000000000000030000000000000000', '0x0000000000000000000000010000000000000000', '0x00000000000000000000000249250a5C27Ecab3B',
'0x000000000000000000000002b87c966bC00Bc2C4')
)
select
user,
count(distinct tx_hash) as transactions
from main
group by 1
order by 2 desc
limit 10
QueryRunArchived: QueryRun has been archived