with mints as (
select * from base.core.ez_nft_transfers
where nft_address in (
'0x9d9c0c4e764117fccd2bc3548f0e95c806e6f996')
and event_type = 'mint')
select
nft_to_address as minter,
count(tx_hash) as Total_mints
from mints
group by 1
order by Total_mints DESC
limit 20