Afonso_DiazGrouping swappers
    Updated 2025-03-30
    with

    transfers as (
    select
    tx_hash,
    block_timestamp,
    origin_from_address,
    'ETH' as symbol,
    amount,
    amount_usd,
    from_address,
    to_address
    from
    boba.core.ez_native_transfers
    where
    origin_from_address in (from_address, to_address)
    and origin_to_address = '0xac4c6e212a361c968f1725b4d055b47e63f80b75'

    union all

    select
    tx_hash,
    block_timestamp,
    origin_from_address,
    symbol,
    amount,
    amount_usd,
    from_address,
    to_address
    from
    boba.core.ez_token_transfers
    where
    origin_from_address in (from_address, to_address)
    and origin_to_address = '0xac4c6e212a361c968f1725b4d055b47e63f80b75'
    ),

    QueryRunArchived: QueryRun has been archived