kenobi9270 top 10
Updated 2022-03-21
9
1
2
3
4
5
6
›
⌄
select count(*) as cnt,asset_name from algorand.swaps
inner join algorand.asset on algorand.asset.asset_id=algorand.swaps.swap_from_asset_id
where swap_from_amount!=0 and block_timestamp::date >= '2022-01-01'
group by asset_name
order by cnt desc
limit 10
Run a query to Download Data