pandaArbitrum & Layer 1 Comparison Fee
    WITH eth_Price AS
    (
    SELECT
    date_trunc('day', hour) as daily_timestamp,
    EXTRACT(HOUR FROM HOUR) as hourly_time,
    price
    FROM
    ethereum.core.fact_hourly_token_prices
    WHERE
    TOKEN_ADDRESS is NULL
    AND
    SYMBOL is NULL
    ),

    sol_Price AS
    (
    SELECT
    date_trunc('day', recorded_hour) as daily_timestamp,
    EXTRACT(HOUR FROM recorded_hour) as hourly_time,
    CLOSE as price
    FROM
    solana.core.fact_token_prices_hourly
    WHERE
    SYMBOL = 'SOL'
    ),

    avalanche_Price AS
    (
    SELECT
    date_trunc('day', hour) as daily_timestamp,
    EXTRACT(HOUR FROM hour) as hourly_time,
    PRICE as price
    FROM
    ethereum.core.fact_hourly_token_prices
    WHERE
    SYMBOL = 'WAVAX'
    Run a query to Download Data