SELECT
symbol,
sum(amount) as token_amount,
sum(amount_usd) as token_amount_usd
FROM polygon.udm_events
WHERE to_address = '0x5b3256965e7c3cf26e11fcaf296dfc8807c01073'
AND amount IS NOT NULL
AND amount_usd IS NOT NULL
AND from_address='0xf715beb51ec8f63317d66f491e37e7bb048fcc2d'
GROUP BY 1
ORDER BY 2 DESC