StangFAST01 - overview nft
Updated 2023-08-25
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
›
⌄
-- NFT --
-- projects
-- ferdy fish - 0xae079eda901f7727d0715aff8f82ba8295719977 [ bot platform ]
-- Ferdy Card ID - 0xae079eda901f7727d0715aff8f82ba8295719977 [ bot platform ]
-- nft to address -> buyer
-- nft from address -> seller
-- AVAX --
-- origin from address -> buyers
-- identifier 'CALL_ORIGIN' for full price
with
avax_price AS
(
SELECT
date_trunc( 'day' , a.hour ) AS day
, avg( a.price ) AS price
FROM
avalanche.core.fact_hourly_token_prices a
WHERE
a.symbol = 'WAVAX'
GROUP BY 1
ORDER BY 1 DESC
)
,
-- avalytics --
avalytics AS
(
SELECT
date_trunc( 'day' , a.block_timestamp ) AS "date"
, count( DISTINCT a.nft_to_address ) AS "buyers"
, count( DISTINCT a.nft_from_address ) AS "sellers"
Run a query to Download Data