select nft_to_address,
count (distinct tx_hash) as TX_Count,
count (distinct tokenid) as Minted_Tokens,
sum (mint_price_usd) as Volume
from ethereum.core.ez_nft_mints
WHERE nft_address =lower('0xdCB8d9a2A65a006FafEec5695e288B711762D3e4')
group by 1
order by 3 DESC
limit 10