select to_address_name, sum(ZEROIFNULL(amount_usd)) as volume from polygon.udm_events
where date(block_timestamp) > '2022-01-01'
and to_label = 'sushiswap'
and origin_function_name = 'swapExactTokensForTokens'
and event_name = 'transfer'
group by to_address_name
order by volume DESC
limit 10