Updated 2023-03-11
    --highest number of Moonbirds NFTs that was minted in one day
    SELECT
    block_timestamp::DATE AS _date,
    COUNT(tokenid) as number_of_mints
    FROM
    ethereum.core.ez_nft_mints
    WHERE
    nft_address = lower('0x23581767a106ae21c074b2276D25e5C3e136a68b')
    GROUP BY _date
    ORDER BY number_of_mints DESC
    Run a query to Download Data