shadilTotal volume of ETH bridges form Optimism to Ethereum
    Updated 2022-09-14
    select sum(amount) as total_volume, block_timestamp::date as date_time
    from ethereum.core.ez_eth_transfers
    where block_timestamp >= '2022-01-01'
    and origin_to_address ilike lower('%0X25ACE71C97B33CC4729CF772AE268934F7AB5FA1%')
    group by date_time
    Run a query to Download Data