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