Delamir-601422222
Updated 2022-11-22
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select
count (distinct tx_hash) as Sales_Count,
count (distinct buyer_address) as Buyers_Count,
count (distinct seller_address) as Sellers_Count,
count (distinct tokenid) as NFTS_Count,
count (distinct platform_name) as Marketplaces_Count,
sum (price_usd) as Total_Sale_Volume,
avg (price_usd) as avg_Sale_Volume,
min (price_usd) as min_Sale_Volume,
max (price_usd) as max_Sale_Volume
from ethereum.core.ez_nft_sales
where price_usd > 0
Run a query to Download Data