with mints as (
select * from base.core.ez_nft_transfers
where nft_address = '0x874ad7c13935f73c7bbe94efbd8e766de2a585eb'
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