Updated 2023-06-15
99
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 02 @ https://flipsidecrypto.xyz/edit/queries/94dc4e41-be59-43fe-a365-75801ed24235
-- forked from 2023-06-13 12:10 PM @ https://flipsidecrypto.xyz/edit/queries/35404127-fe38-422a-84c1-fbeed4a4c805
with
pepe AS
(
SELECT
date_trunc( 'day' , a.hour ) AS day
, avg( a.price ) AS price
, a.symbol AS token
, a.token_address AS address
FROM
ethereum.core.fact_hourly_token_prices a
WHERE
a.token_address = lower( '0x6982508145454ce325ddbe47a25d4ec3d2311933' )
GROUP BY
1 , 3 , 4
ORDER BY
1 DESC
)
,
eth AS
(
SELECT
date_trunc( 'day' , a.hour ) AS day
, avg( a.price ) AS price
, a.symbol AS token
FROM
ethereum.core.fact_hourly_token_prices a
WHERE
a.token_address = lower( '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2' )
GROUP BY
1 , 3
ORDER BY
Run a query to Download Data