HadisehHop In the Pool 3
Updated 2022-11-28
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select
PROJECT_NAME,
count (distinct trader) as total_swapper,
count (distinct tx_id) as total_swap
from osmosis.core.fact_swaps inner join osmosis.core.dim_labels
on from_currency=address
where TO_CURRENCY not like '%pool%' or TO_CURRENCY is not null
and tx_status = 'SUCCEEDED'
group by 1
order by 2 desc
limit 15
Run a query to Download Data