StangFAST07 - premium
Updated 2023-08-15
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 06 - expiration date [ year ] @ https://flipsidecrypto.xyz/edit/queries/fcae2d87-a08d-45fb-b1f8-a40dc06eb5b9
-- forked from 05 - expiration date [ month ] @ https://flipsidecrypto.xyz/edit/queries/c2007edc-d6f0-4f65-a121-3a34389b0626
-- forked from 04 - extending domain @ https://flipsidecrypto.xyz/edit/queries/f9c940b9-6685-496b-b459-50df2efb222d
-- forked from 03 - popular domain @ https://flipsidecrypto.xyz/edit/queries/d22be001-c362-49e3-ae69-e1eb17d26e0f
-- forked from 02 - paid it with tokens @ https://flipsidecrypto.xyz/edit/queries/02411f69-bb4d-490d-9d3e-af3cc85b5e5c
-- forked from 01 - registering domain name @ https://flipsidecrypto.xyz/edit/queries/4ecf0c2e-f4b6-43ae-970b-0cf6e23f809d
with
sol_price AS
(
SELECT
date_trunc( 'day' , a.recorded_hour ) AS day
, avg( a.close ) AS price
, a.symbol AS token
FROM
solana.core.fact_token_prices_hourly a
WHERE
a.symbol = 'SOL'
GROUP BY 1 , 3
ORDER BY 1 DESC
)
,
bonk_price AS
(
SELECT
date_trunc( 'day' , a.recorded_hour ) AS day
, avg( a.close ) AS price
, a.symbol AS token
FROM
solana.core.fact_token_prices_hourly a
Run a query to Download Data