B09Taxn count
    Updated 2024-05-22
    select
    date(block_timestamp) as date,
    count(distinct tx_hash) as tx_count,
    count(distinct buyer_address) as active_buyers_wallets,
    sum(price_usd) as usd_volume,
    platform_name
    from
    ethereum.nft.ez_nft_sales
    where
    nft_address = lower('0x4cd0ea8b1bdb5ab9249d96ccf3d8a0d3ada2bc76') and
    date(block_timestamp) between current_date()-91 and current_date()-1
    group by date, platform_name

    QueryRunArchived: QueryRun has been archived