select
-- date(block_timestamp) as date,
to_label,
sum(amount) as volume
from ethereum.udm_events
where amount is not null
and event_type = 'erc20_transfer'
and symbol = 'USDC'
and amount < pow(10,10)
and to_label is not null
group by 1
order by volume desc
-- limit 100