StangFAST01 - distribution users
Updated 2023-08-25
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 retention rate of old users @ https://flipsidecrypto.xyz/edit/queries/396f56a1-f364-4436-ad74-c7a68a4821fb
-- PositionLiquidated
-- PositionTranslated
-- PositionModified
-- ReferralBonusAdded
with
avax_price AS
(
SELECT
date_trunc( 'day' , a.hour ) AS day
, avg( a.price ) AS price
, a.symbol
FROM
avalanche.core.fact_hourly_token_prices a
WHERE
a.symbol = 'WAVAX'
GROUP BY 1 , 3
ORDER BY 1 DESC
)
,
hubble AS
(
SELECT
a.address AS address
, a.address_name AS name
FROM
avalanche.core.dim_labels a
WHERE
a.project_name = 'hubble'
GROUP BY 1 , 2
)
,
Run a query to Download Data