mucryptoUniswap, addresses minting nfts
    Updated 2023-02-28
    select
    count(distinct nft_to_address) as unique_addresses,
    date_trunc('day', block_timestamp) as day
    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