h4wkMint count 2
Updated 2022-07-02
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
-- How many ShroomDK NFTs have been minted so far?
-- How many failed mints have there been?
-- How many times has a ShroomDK NFT been transferred so far?
-- Anything else you find interesting about the mint!
select
count(distinct nft_to_address) as unique_minter,
count(*) as mint_count
from ethereum.core.ez_nft_mints
where nft_address = lower('0xdfb57B6E16DDB97Aeb8847386989f4DCA7202146')
Run a query to Download Data