mucryptoUntitled Query
    Updated 2023-02-03
    select
    date_trunc('day', block_timestamp) as day,
    count(distinct buyer_address) as n_buyers
    from ethereum.core.ez_nft_sales
    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