Afonso_DiazTotal
Updated 2025-01-31
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
pricet as (
select
hour::date as date,
decimals,
token_address,
symbol,
avg(price) as price_usd
from
crosschain.price.ez_prices_hourly
where
token_address in (
'0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a',
'0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a',
'0xaf88d065e77c8cc2239327c5edb3a432268e5831',
'0x912ce59144191c1204e64559fe8253a0e49e6548',
'0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9',
'0xaaee1a9723aadb7afa2810263653a34ba2c21c7a'
)
and blockchain = 'arbitrum'
group by 1, 2, 3, 4
union all
select
hour::date as date,
decimals,
token_address,
symbol,
avg(price) as price_usd
from
crosschain.price.ez_prices_hourly
where
token_address in (
'0xba2ae424d960c26247dd6c32edc70b295c744c43'
QueryRunArchived: QueryRun has been archived