select
distinct event_inputs:to as user_who_minted_the_most,
count(distinct event_inputs:tokenId) as mints
from ethereum_core.fact_event_logs
where contract_address='0x23581767a106ae21c074b2276d25e5c3e136a68b'
and event_name='Transfer' and event_inputs:from ='0x0000000000000000000000000000000000000000'
group by 1
order by 2 desc limit 1