0-MIDmonthly stats
Updated 2023-04-13
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
select date_trunc('month',BLOCK_TIMESTAMP)as month
,count(distinct BUYER_ADDRESS)as "Buyer Count"
,count(distinct SELLER_ADDRESS)as "Seller count"
,sum(PRICE_USD) as "USD Sale Price"
,count(distinct TOKENID)as "Token Count"
,count(distinct TX_HASH) as "Sale Count"
,avg(PRICE_USD) as "Total Avg USD Sale Volume"
from ethereum.core.ez_nft_sales
where NFT_ADDRESS='0x629a673a8242c2ac4b7b8c5d8735fbeac21a6205'
and PLATFORM_NAME='opensea'
and PRICE_USD>0
group by 1
Run a query to Download Data