SELECT count(distinct tx_hash) as sales, count(distinct buyer_address) as buyers, count(distinct seller_address) as sellers,
sum(PRICE_USD) as sales_volume, avg(PRICE_USD) as avg_nft_price
from ethereum.core.ez_nft_sales
where nft_address LIKE lower('0x629A673A8242c2AC4B7B8C5D8735fbeac21A6205')
and platform_name='opensea'