mondovtop10traders
Updated 2023-10-30
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
select
origin_from_address as "Wallet",
count(distinct tx_hash) as "Total Swaps"
from
avalanche.core.ez_decoded_event_logs
where
origin_to_address = lower('0x60aE616a2155Ee3d9A68541Ba4544862310933d4')
and event_name = 'Swap'
and tx_status = 'SUCCESS'
group by
1
order by
2 desc
limit
10
Run a query to Download Data