ValiMohammadiuser lp dex
    with
    axelar_tx as (
    select
    tx_id,
    ATTRIBUTE_VALUE as chain
    from
    axelar.core.fact_msg_attributes
    where
    ATTRIBUTE_KEY = 'destinationChain'
    ),
    axelar_user as (
    select
    ATTRIBUTE_VALUE as axelar_u,
    tx_id
    from
    axelar.core.fact_msg_attributes
    where
    tx_id in (
    select
    tx_id
    from
    axelar_tx
    )
    and ATTRIBUTE_KEY = 'destinationAddress'
    ),
    su as (
    select
    FROM_ADDRESS as Same_users
    from
    ethereum.core.fact_transactions
    where
    FROM_ADDRESS in (
    select
    FROM_ADDRESS as eth_u
    from
    optimism.core.fact_transactions
    Run a query to Download Data