bachiFlow nft5
Updated 2022-09-26
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
SELECT
split(marketplace, '.')[2] as nft_collection,
count(distinct tx_id) as no_of_nft_txns,
COUNT(DISTINCT nft_id) as no_of_sales,
round(sum(price),2) as total_sales_volume,
round(avg(price),2) as average_sales_volume,
COUNT(DISTINCT buyer) as no_of_buyers,
count(distinct seller) as no_of_sellers
FROM flow.core.ez_nft_sales
where tx_succeeded = true
group by marketplace
order by average_sales_volume desc
limit 5
Run a query to Download Data