mucryptoUniswap, nft sales
    Updated 2023-02-23
    select
    date_trunc('day', block_timestamp) as day,
    count(tx_hash) as sales,
    platform_name
    from ethereum.core.ez_nft_sales
    where project_name = 'uniswap'
    and block_timestamp::date between '2023-01-01' and '2023-01-31'
    group by 1,3
    Run a query to Download Data