Sbhn_NPsmoggy-blue
Updated 2025-02-07
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 price_ena as (
select
hour::date as datee,
avg(price) as usdprice
from crosschain.price.ez_prices_hourly
where symbol = 'ENA'
group by 1
),
price_swell as (
select
hour::date as datee,
avg(price) as usdprice
from crosschain.price.ez_prices_hourly
where symbol = 'SWELL'
group by 1
),
price_eth as (
select
hour::date as datee,
avg(price) as usdprice
from ethereum.price.ez_prices_hourly
where symbol = 'WETH'
group by 1
),
price_weeth as (
select
hour::date as datee,
avg(price) as usdprice
from crosschain.price.ez_prices_hourly
where symbol = 'WEETH'
group by 1
),
QueryRunArchived: QueryRun has been archived