maybeyonasbico_txs
    Updated 2022-08-30
    with
    deposits as (
    select
    block_timestamp,
    tx_hash,
    'ETH' as origin_chain
    from ethereum.core.fact_event_logs
    where topics[0] = '0x522e11fa05593b306c8df10d2b0b8e01eec48f9d0a9427a7a93f21ff90d66fb1'

    union all
    select
    block_timestamp,
    tx_hash,
    'POLY' as origin_chain
    from polygon.core.fact_event_logs
    where topics[0] = '0x522e11fa05593b306c8df10d2b0b8e01eec48f9d0a9427a7a93f21ff90d66fb1'

    union all
    select
    block_timestamp,
    tx_hash,
    'ARB' as origin_chain
    from arbitrum.core.fact_event_logs
    where topics[0] = '0x522e11fa05593b306c8df10d2b0b8e01eec48f9d0a9427a7a93f21ff90d66fb1'

    union all
    select
    block_timestamp,
    tx_hash,
    'OPT' as origin_chain
    from optimism.core.fact_event_logs
    where topics[0] = '0x522e11fa05593b306c8df10d2b0b8e01eec48f9d0a9427a7a93f21ff90d66fb1'

    union all
    select
    block_timestamp,
    Run a query to Download Data