alitaslimiTransactions Overview Legacy
    Updated 2023-05-14
    with
    -------------------- Prices --------------------
    prices as (
    select
    hour::date as day,
    symbol,
    avg(price) as price
    from
    avalanche.price.ez_hourly_token_prices
    where
    token_address = '0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7'
    group by
    day
    order by
    day desc
    limit 20
    select
    hour::date as day,
    symbol,
    avg(price) as price
    from
    crosschain.price.ez_hourly_token_prices
    where
    token_address in (
    '0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7', -- WAVAX
    '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2' -- WETH
    )
    group by
    day
    order by
    day desc
    limit 20
    )
    arbitrum_prices AS (
    SELECT
    hour::date AS day,
    Run a query to Download Data