Eman-RazRoutes of Swaps🔁
Updated 2023-11-07
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
select
symbol_in || ' ➡ ' || symbol_out as "Route",
count(distinct tx_hash) as "🔄Swap Count",
sum(amount_in_usd) as "💰Swap Volume (USD)",
count(distinct origin_from_address) as "👨💻Trader Count"
FROM
avalanche.core.ez_dex_swaps
where
block_timestamp::date >= '{{Start_Date}}'
and block_timestamp::date <= '{{End_Date}}'
and platform = 'pangolin'
and amount_in_usd > 0
group by
1
order by
1
Run a query to Download Data