austinbChainlink NFT Floor Feeds
Updated 2022-12-15
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
with base as (
select *
from ethereum.chainlink.ez_oracle_feeds
where feed_category = 'NFT Floor Prices (ETH pairs)'
and feed_name not in ('Cryptoadz Floor Price',
'World of Women Floor Price',
'CoolCats Floor Price')
and latest_answer_adj <> 0
and block_timestamp > '2022-11-18'
)
select
block_timestamp::date as date_day,
replace(feed_name,'Floor Price','') as feed_name,
avg(latest_answer_adj) as avg_floor_price
from base
group by 1,2
order by 1 desc, 3 asc
Run a query to Download Data