mlhMonthly count of minted NFTs
    Updated 2022-11-23
    select date_trunc('month', block_timestamp) as month,
    count (distinct tokenid) as NFTs
    from ethereum.core.ez_nft_mints
    where nft_address = '0x629a673a8242c2ac4b7b8c5d8735fbeac21a6205'
    group by 1
    Run a query to Download Data