FatemeTheLadyTop Addresses overal states
Updated 2023-05-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
24
25
26
27
›
⌄
with top_ as
(select
origin_from_address as address,
count(distinct tx_hash) as swaps
from
avalanche.core.ez_dex_swaps
where block_timestamp::date between '{{StartDate}}' and '{{EndDate}}'
group by 1
order by 2 desc
)
select
count(distinct origin_from_address) as "Swappers",
count(distinct tx_hash) as "Swaps",
sum(amount_in_usd) as "volume(USD)",
avg(amount_in_usd) as "AVG volume"
from
avalanche.core.ez_dex_swaps
where origin_from_address in (select address from top_)
and block_timestamp::date between '{{StartDate}}' and '{{EndDate}}'
order by 1 asc
-- total swaps all time \ total swappers \ median or avg max swap volume
-- active users / swaps overtime
Run a query to Download Data