mucryptoUniswap, fees nfts
    Updated 2023-02-03
    select
    sum(tx_fee) as ETH_fee,
    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