select count(distinct tx_hash) as transfer_count, symbol from ethereum.core.ez_token_transfers
where from_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