h4wkMint count 2
    Updated 2022-07-02
    -- 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