select
date(BLOCK_TIMESTAMP) as date,
count (distinct tx_hash) as Number_NFT_minted,
count (distinct nft_to_address) as Minters,
count (distinct tokenid) as Minted_Token
from ethereum.core.ez_nft_mints
where nft_address = lower('0x06Bc6BF1432C4f28da6aD2BeE7D6e62F91B1B669')
group by 1
order by 1