freemartianETH Versus CRV Price
Updated 2022-11-23
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
with ETH as (
select
hour,
avg(price) as asset_price
from ethereum.core.fact_hourly_token_prices
where symbol = 'WETH'
and hour >= '2022-11-20'
group by hour),
CRV as (
select
hour,
avg(price) as asset_price
from ethereum.core.fact_hourly_token_prices
where symbol = 'CRV'
and hour >= '2022-11-20'
group by hour
)
select ETH.hour, CRV.asset_price as crv, ETH.asset_price as eth
from CRV inner join ETH on CRV.hour = ETH.hour
Run a query to Download Data