select date_trunc('day', block_timestamp) as date, swap_program, sum(swap_from_amount) as sell_volume, count(distinct swapper) as number_of_wallets
from algorand.swaps
where date >= '2022-04-01' and swap_from_amount > 0 and swap_from_asset_id = '386195940'
group by 1, 2