maybeyonasmaker_dai_usdc_destinations
    Updated 2022-05-14
    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
    Run a query to Download Data