mlhtop 10 minters who minted the highest count of NFTs in 2022
    Updated 2022-12-22
    select NFT_TO_ADDRESS,
    count(DISTINCT tx_hash) as trxs,
    count(DISTINCT tokenid) as nfts,
    sum(tx_fee) as gas_volume,
    avg(tx_fee) as avg_Consumed_gas
    from ethereum.core.ez_nft_mints
    where block_timestamp >= '2022-01-01'
    group by 1
    order by 3 desc
    limit 10
    Run a query to Download Data