Updated 2025-01-15
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
SELECT
count(*) as Total_sales,
SUM(TOTAL_PRICE) AS sales_volume,
AVG(TOTAL_PRICE) AS average_sale_price,
SUM(TOTAL_PRICE_USD) AS sales_volume_usd,
AVG(TOTAL_PRICE_USD) AS average_sale_price_usd,
count(distinct buyer_address) as buyers,
count(distinct seller_address) as sellers,
FROM aptos.nft.ez_nft_sales
where project_name= 'Pixel Pirates'
QueryRunArchived: QueryRun has been archived