Afonso_DiazTop users
Updated 2024-09-19
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
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
from_address as user,
tx_fee
from
kaia.core.fact_transactions
where
tx_succeeded = 1
and block_timestamp::date between '{{ start_date }}' and '{{ end_date }}'
)
select
user,
count(distinct tx_hash) as transactions
from main
group by 1
order by 2 desc
limit 10
QueryRunArchived: QueryRun has been archived