Afonso_DiazTop 100 users
Updated 2025-03-06
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
27
28
29
30
31
32
33
34
35
36
›
⌄
with
users as (
select
distinct from_address as user
from
ink.core.fact_transactions
where
tx_succeeded
and to_address = '0x9f500d075118272b3564ac6ef2c70a9067fd2d3f'
and origin_function_signature in ('0xe884624b', '0xc0129d43')
),
main as (
select
tx_hash,
block_timestamp,
from_address as user,
tx_fee
from
ink.core.fact_transactions
where
tx_succeeded
and user in (select user from users)
)
select
user,
count(distinct tx_hash) as transactions
from
main
group by 1
order by 2 desc
limit 100
QueryRunArchived: QueryRun has been archived