select sum(swap_from_amount) as from_amount, swap_to_asset_id, asset_name
from flipside_prod_db.algorand.swaps s
inner join flipside_prod_db.algorand.prices_swap ps on ps.asset_id = s.swap_to_asset_id
where SWAP_from_ASSET_ID = '386192725'
and block_timestamp::date > '2022-04-01'
group by swap_to_asset_id, asset_name
order by from_amount DESC
limit 10