Wikist-oA67h0Gritnova L3 c - All NFT trades happening from 2023-01-01 into the future from a project "cryptoadz"
    Updated 2023-01-28
    select
    date(block_timestamp) as date,
    count(distinct buyer_address) as buyers,
    count(distinct tx_hash) as txs
    from ethereum.core.ez_nft_sales
    where date >= '2023-01-01'
    and project_name = 'cryptoadz'
    group by date