Mris-PlCRv4Untitled Query
    Updated 2023-02-24
    select
    date(block_timestamp) as date, count(distinct buyer_address) as buyers, count(distinct tx_hash) as txs, sum(price_usd) as usd_volume
    FROM
    ethereum.core.ez_nft_sales
    where
    project_name = 'Mutant Ape Yacht Club'
    group by date
    Run a query to Download Data