mlhUntitled Query
Updated 2022-11-23Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
select count (distinct tx_hash) as sales,
count (distinct buyer_address) as buyers,
count (distinct seller_address) as sellers,
count (distinct nft_address) as collections,
count (distinct tokenid) as NFTs,
sum (price_usd) as USD_volume,
avg (price_usd) as Average_USD_Volume,
min (price_usd) as Min_USD_Volume,
max (price_usd) as Max_USD_Volume
from ethereum.core.ez_nft_sales
where nft_address = '0x629a673a8242c2ac4b7b8c5d8735fbeac21a6205'
Run a query to Download Data