select swap_to_asset_id, asset.asset_name, sum(swap_from_amount) as algo_swap_volume from algorand.swaps swaps
JOIN algorand.asset asset on swaps.swap_to_asset_id = asset.asset_id
where swap_from_asset_id='0' group by swap_to_asset_id, asset_name, swap_from_asset_id order by algo_swap_volume desc limit 10