SUM( "USERS" ) | SUM( "TRANSACTIONS" ) | SUM( "USD VOLUME" ) | AVG( "USERS" ) | AVG( "TRANSACTIONS" ) | AVG( "USD VOLUME" ) | |
---|---|---|---|---|---|---|
1 | 81566 | 354709 | 36594222.4677742 | 3398.583333 | 14779.541667 | 1524759.26949059 |
StangFAST002 - overview [ num ]
Updated 2024-02-13Copy Reference Fork
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 001 - overview @ https://flipsidecrypto.xyz/edit/queries/99238dad-d4a9-4cf7-80c5-8007daba3025
-- forked from 02 - big number @ https://flipsidecrypto.xyz/edit/queries/ea4dce1d-d5cb-4e41-aab4-c58b9b0a5042
-- forked from 01 - overview @ https://flipsidecrypto.xyz/edit/queries/05811b90-caa7-4c35-bc2c-374e446324ee
with
hon AS
(
SELECT
a.address AS address
, a.symbol AS symbol
, a.name AS name
, a.decimals AS decimals
FROM
avalanche.core.dim_contracts a
WHERE
a.address = lower( '0xEd2b42D3C9c6E97e11755BB37df29B6375ede3EB' )
)
,
hon_price AS
(
SELECT
date_trunc( 'day' , a.hour ) AS day
, avg( a.price ) AS price_usd
, a.symbol AS token
FROM
avalanche.price.ez_hourly_token_prices a
INNER JOIN
hon b
ON a.token_address = b.address
GROUP BY 1 , 3
ORDER BY 1 DESC
)
,
Last run: over 1 year ago
1
75B
12s