Updated 2025-01-31
    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