Nige7777Tom Sachs Rocket Component Prices
Updated 2022-11-28
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
select distinct
avg(price_usd) over (partition by date_trunc('hour',block_timestamp ) order by date_trunc('hour',block_timestamp )) as AVG_PRICE,
min(price_usd) over (partition by date_trunc('hour',block_timestamp ) order by date_trunc('hour',block_timestamp )) as MIN_PRICE,
MAX(price_usd) over (partition by date_trunc('hour',block_timestamp ) order by date_trunc('hour',block_timestamp )) as MAX_PRICE,
COUNT( price_usd) over (partition by date_trunc('hour',block_timestamp ) order by date_trunc('hour',block_timestamp )) as Sale_count,
date_trunc('hour',block_timestamp ) hour
from ethereum.nft_events
where contract_address = lower('0x11595ffb2d3612d810612e34bc1c2e6d6de55d26')
and event_type = 'sale'
and date_trunc('hour',block_timestamp ) > '2021-07-25T09:55:55Z'
order by hour--price_usd desc