theericstoneInto vs Out of ETH
    select
    date_trunc('hour',block_timestamp) as block_hour,
    sum(amount_out) as
    from
    ethereum.dex_swaps
    where
    token_address = '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2' -- weth
    and block_timestamp > getdate() - interval '4 days'
    Run a query to Download Data