Updated 2023-06-03
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
-- forked from 01 @ https://flipsidecrypto.xyz/edit/queries/be6ac40e-9a59-425d-8d99-e592d9287d73
with
eth_price AS
(
SELECT
date_trunc( 'day' , a.hour ) AS day
, avg( a.price ) AS price
, a.symbol AS currency
FROM
ethereum.core.fact_hourly_token_prices a
GROUP BY
1 , 3
ORDER BY
1 DESC
)
,
new_eth_nft AS
(
SELECT
min( a.block_timestamp ) AS min_date
, a.project_name AS new_nft
FROM
ethereum.core.ez_nft_sales a
WHERE
a.event_type = 'sale'
GROUP BY
2
ORDER BY
1 DESC
)
,
eth_nft AS
(
Run a query to Download Data