mucryptoUniswap, nfts minted
    Updated 2023-02-03
    select
    date_trunc('day', block_timestamp) as day,
    sum(nft_count) as NFTs_minted
    from ethereum.core.ez_nft_mints
    where project_name = 'uniswap'
    and block_timestamp::date between '2023-01-01' and '2023-01-31'
    group by day
    Run a query to Download Data