select to_address_name, count(*) as number_of_txs, avg(amount_usd) as avg_amt_of_txs from ethereum.udm_events
where contract_address = '0x6b175474e89094c44da98b954eedeac495271d0f' and amount_usd > pow(10,8) and to_address_name is not NULL
group by to_address_name
order by number_of_txs desc
limit 1000