select block_timestamp::date as date,
count(*) as sales,
count(DISTINCT buyer_address) as buyers,
sum(price) as "Volume (Near)",
avg(price) as "Avg Price (Near)"
from near.nft.ez_nft_sales
where nft_address = 'tinkerunion_nft.enleap.near'
and block_timestamp::date >= '2024-04-01'
group by 1