freemartianSWC on EthereumTop 20 Minters
    Updated 2023-09-20


    select
    nft_to_address as minter,
    count(distinct tx_hash) as total_mints
    from ethereum.core.ez_nft_mints
    where EVENT_TYPE = 'nft_mint'
    and nft_address = '0x9d90669665607f08005cae4a7098143f554c59ef'
    group by 1
    order by total_mints DESC
    limit 20


    Run a query to Download Data