roketb2
Updated 2023-04-13
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select
count (distinct buyer_address) as Buyers,
count (distinct seller_address) as Sellers,
count (distinct tx_hash) as Sales,
count (distinct tokenid) as NFTs_trade,
count (distinct project_name) as Collections,
sum(price_usd) as Volume,
min(price_usd) as Min_Volume,
median(price_usd) as Median_Volume,
avg(price_usd) as Avg_Volume,
max(price_usd) as Max_Volume
from ethereum.core.ez_nft_sales
where platform_name = 'blur'
Run a query to Download Data