Afonso_DiazTop users (tx)
Updated 2025-01-05
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
from_address as user,
tx_fee
from
mantle.core.fact_transactions
where
tx_succeeded
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 100
QueryRunArchived: QueryRun has been archived