StangFAST 01 - NU
Updated 2023-08-23
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 04 - TX @ https://flipsidecrypto.xyz/edit/queries/786df1df-f1cb-46ca-91df-42fdd44b039a
-- forked from 02 - new users @ https://flipsidecrypto.xyz/edit/queries/b8ce767b-da86-444f-9f78-38482ab9a13f
-- forked from 02 - number @ https://flipsidecrypto.xyz/edit/queries/cf03d9d3-1a09-484c-88e3-2c9dcfe61829
-- forked from 01 - number @ https://flipsidecrypto.xyz/edit/queries/f08de54b-d0bc-498e-9a5c-2563c144ba9c
with
new AS
(
SELECT
min( a.block_timestamp ) AS min_date
, a.origin_from_address AS new_user
FROM
ethereum.core.ez_dex_swaps a
WHERE
a.platform LIKE 'uniswap%'
AND a.amount_in_usd IS NOT NULL
AND a.amount_in_usd > 0
GROUP BY
2
ORDER BY
1 DESC
)
,
eth_price AS
(
SELECT
date_trunc( 'day' , a.hour ) AS date
, avg( a.price ) AS price_usd
FROM
ethereum.core.fact_hourly_token_prices a
Run a query to Download Data