-- forked from TopShot collections @ https://flipsidecrypto.xyz/edit/queries/586dbc91-4c55-4e6e-868c-bcd2a6906d63
SELECT
count (DISTINCT buyer) as buyers,
count (DISTINCT seller) as seller,
sum(price) as pricevolume
from flow.nft.ez_nft_sales
where NFT_COLLECTION = 'A.0b2a3299cc857e29.TopShot'
and block_timestamp >= '2024-01-01'
LIMIT 100