SalehFlipside's World Cup Kick Off: Gas Guzzlers-daily
Updated 2022-11-15
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
›
⌄
----******************************************************************************************************************************
----******************************************************************************************************************************
----******************************************************USD price list of tokens************************************************
with algo_price as (
select
block_hour::date as day_price
,avg (price_usd) as avg_price
from algorand.core.ez_price_pool_balances
where asset_id = '0'
and block_hour::date>=CURRENT_DATE-30
group by 1
)
,flow_price as (
select
timestamp::date as day_price
,avg (price_usd) as avg_price
from flow.core.fact_prices
where source = 'coinmarketcap'
and symbol = 'FLOW'
and timestamp::date>=CURRENT_DATE-30
group by 1
)
,osmo_price as (
select
recorded_at::date as day_price
,avg (price) as avg_price
from osmosis.core.dim_prices
where symbol = 'OSMO'
and provider = 'coinmarketcap'
and recorded_at::date>=CURRENT_DATE-30
group by 1
)
,sol_price as(
select
block_timestamp::date as day_price
,avg (swap_to_amount/swap_from_amount) as avg_price
Run a query to Download Data