bachiflow nft2
Updated 2022-09-25
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
SELECT
count(distinct marketplace) as no_of_collections,
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
Run a query to Download Data