mmdrezaAverage NFT price on Ethereum
Updated 2022-09-17Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
with flow as (select date_trunc('day',block_timestamp)as date,price
from flow.core.ez_nft_sales
where
block_timestamp >= '2022-01-01'
group by date,price
order by date asc),
ethereum as (select date_trunc('day',block_timestamp)as date,price_usd
from ethereum.core.ez_nft_sales
where
block_timestamp >= '2022-01-01'
group by date,price_usd
order by date asc),
solana as (select date_trunc('day',block_timestamp)as date,sales_amount
from solana.core.fact_nft_sales
where
block_timestamp >= '2022-01-01'
group by date,sales_amount
order by date asc)
select avg(price_usd) as avg_eth
from ethereum
Run a query to Download Data