select --count(tx_id) as payments,
date_trunc ('month', block_timestamp) as mes,
to_address,
symbol,
sum(amount),
sum(amount_usd)
from ethereum.udm_events
where block_timestamp >= '2021-07-01'
and from_address = lower ('0x2Fb9F0ef424b24a8D293999298F392a33Fe6A8b5')
group by 1, 2, 3