Yousefi_1994Holonym - Fee and User
    Updated 2024-03-10
    with ftm_daily_price as (
    select
    hour::date as day,
    avg(price) as price_usd
    from crosschain.price.ez_hourly_token_prices
    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_hourly_token_prices
    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_hourly_token_prices
    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'
    QueryRunArchived: QueryRun has been archived