freemartianDaily ETH - Mainnet >>> Optimism
    Updated 2022-09-14
    select
    sum(amount) as eth_volume,
    count(distinct origin_from_address) as bridgoors_count,
    count(distinct tx_hash) as bridge_count,
    date_trunc('day', block_timestamp::date) as TIME
    from ethereum.core.ez_eth_transfers
    where origin_to_address = '0x99c9fc46f92e8a1c0dec1b1747d010903e884be1'
    and block_timestamp > CURRENT_DATE - 120
    group by TIME
    Run a query to Download Data