HolonymG3
Updated 2025-02-22
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 ftm_daily_price as (
select
hour::date as day,
avg(price) as price_usd
from crosschain.price.ez_prices_hourly
where token_address = '0x4e15361fd6b4bb609fa63c81a2be19d873717870'
and blockchain = 'ethereum'
group by day
),
eth_daily_price as (
select
hour::date as day,
avg(price) as price_usd
from crosschain.price.ez_prices_hourly
where token_address = '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2'
and blockchain = 'ethereum'
group by day
),
avax_daily_price as (
select
hour::date as day,
avg(price) as price_usd
from crosschain.price.ez_prices_hourly
where token_address = '0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7'
and blockchain = 'avalanche'
group by day
),
optimism_fees_transactions as (
select
block_timestamp,
tx_hash,
from_address as userAddress,
value as fee,
'ETH' as currency
from optimism.core.fact_transactions
where to_address = '0xdca2e9ae8423d7b0f94d7f9fc09e698a45f3c851'