StangFASTpart 4.1 | overview
Updated 2024-11-12
9999
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
›
⌄
--- 0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7 | token address WAVAX
--- 0xce4fee23ab35d0d9a4b6b644881ddd8adebeb300 | nft address
--- total distinct transactions : 47298
--- ez_decoded_event_logs : 47298
with
price_avax as
(
select
date_trunc( 'day' , a.hour ) as daily ,
avg( a.price ) as price ,
a.decimals as decimal ,
a.token_address as token_address ,
a.name as token_name ,
a.symbol as token_symbol
from
avalanche.price.ez_prices_hourly a
group by 1 , 3 , 4 , 5 , 6
order by 1 desc
)
,
minting_txhash as
(
select
a.block_timestamp as datetimes ,
a.tx_hash as txhashs ,
a.nft_from_address as from_address ,
a.nft_to_address as to_address ,
a.tokenid as token_id
from
avalanche.nft.ez_nft_transfers a
where
a.nft_address = '0xce4fee23ab35d0d9a4b6b644881ddd8adebeb300'
and a.event_type = 'mint'
group by 1 , 2 , 3 , 4 , 5
order by 1 desc
)
QueryRunArchived: QueryRun has been archived