Sandeshopti stats
Updated 2022-10-18Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
select
count(tx_hash) as number_of_nfts_sold,
sum(price) as eth_volume,
count(distinct nft_address) as number_of_projects,
median(price) as median_price,
count(distinct BUYER_ADDRESS) as number_of_buyers
from optimism.core.ez_nft_sales
where 1=1
and block_timestamp > current_date - interval ' {{number_of_months}} months'
and currency_symbol in ('WETH','ETH')
limit 1
Run a query to Download Data