PLATFORM_NAME | SALES_COUNT | TOTAL_VOLUME_USD | |
---|---|---|---|
1 | Wapal | 53 | 401.673849939 |
2 | Mercato | 25 | 195.9798 |
aureasarsanedesBaptmen 3.2
Updated 2025-02-28
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
›
⌄
SELECT
PLATFORM_NAME,
COUNT(*) AS sales_count,
SUM(TOTAL_PRICE_USD) AS total_volume_usd
FROM
aptos.nft.ez_nft_sales
WHERE
PROJECT_NAME ilike '%Baptmen%'
GROUP BY
PLATFORM_NAME
ORDER BY
total_volume_usd DESC
Last run: about 2 months ago
2
52B
3s