headitmanager26opEthereum23
    Updated 2023-03-04
    select count(distinct to_address) as transfer_count, symbol from ethereum.core.ez_token_transfers
    where to_address in (select distinct address from ethereum.core.dim_labels where address_name like '%binance%') and symbol is not null
    group by symbol
    order by transfer_count DESC
    limit 10
    Run a query to Download Data