TOTAL_SALES | BUYERS | SELLERS | VOLUME_USD | FLOOR_PRICE_USD | AVG_PRICE_USD | |
---|---|---|---|---|---|---|
1 | 12 | 8 | 7 | 62.366962 | 3.0015 | 4.797458615 |
aureasarsanedespixel 1
Updated 1 day ago
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
SELECT COUNT(distinct tokenid) AS total_sales,
COUNT(distinct buyer_address) as buyers,
COUNT(distinct seller_address) as sellers,
SUM(total_price_usd) as volume_usd,
min(total_price_usd) as floor_price_usd,
avg(total_price_usd) as avg_price_usd
FROM aptos.nft.ez_nft_sales
WHERE PROJECT_NAME = 'Pixel Pirates' AND BLOCK_TIMESTAMP >= DATEADD(day, -{{days}}, CURRENT_DATE)
Last run: 1 day ago
1
39B
2s