alitaslimiTransactions Overview Legacy
Updated 2023-05-14
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
›
⌄
with
-------------------- Prices --------------------
prices as (
select
hour::date as day,
symbol,
avg(price) as price
from
avalanche.price.ez_hourly_token_prices
where
token_address = '0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7'
group by
day
order by
day desc
limit 20
select
hour::date as day,
symbol,
avg(price) as price
from
crosschain.price.ez_hourly_token_prices
where
token_address in (
'0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7', -- WAVAX
'0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2' -- WETH
)
group by
day
order by
day desc
limit 20
)
arbitrum_prices AS (
SELECT
hour::date AS day,
Run a query to Download Data