Moebridger destination - arbitrum** dex
    Updated 2023-03-16
    with bridge as (select tx_hash
    from ethereum.core.fact_event_logs
    where EVENT_INPUTS:chainId = '42161'--destination chain : Arbitrum
    and event_name = 'TransferSentToL2'
    ),

    tb1 as (select
    block_timestamp,
    tx_hash,
    origin_from_address,
    origin_to_address,
    event_name,
    contract_name
    from ethereum.core.fact_event_logs
    where ORIGIN_TO_ADDRESS = lower('0xb8901acb165ed027e32754e0ffe830802919727f')
    and tx_hash in (select tx_hash from bridge)
    )

    , tb2 as (
    select
    block_timestamp,
    tx_hash,
    origin_from_address,
    origin_to_address,
    event_name,
    contract_name
    from arbitrum.core.fact_event_logs
    )
    , tb3 as (
    select
    b.block_timestamp,
    b.tx_hash,
    b.event_name,
    a.origin_from_address,
    b.contract_name,
    b.origin_to_address
    Run a query to Download Data