nsa2000Daily variation of ETH price before and after the merge since Jan 2022
    Updated 2022-10-15
    select
    a.hour::date as date,
    case
    when b.block_number < 15537351 then 'Before Merge'
    when b.block_number >= 15537351 then 'After Merge'
    end as merge,
    avg (a.price) as ETH_Price
    from ethereum.core.fact_hourly_token_prices a join ethereum.core.fact_transactions b on a.HOUR::date=b.BLOCK_TIMESTAMP::date
    where a.symbol = 'WETH'
    and date>='2022-01-01'
    group by 1,2
    order by 1

    Run a query to Download Data