hrst79Attacker Swaps Volume (USD)
    Updated 2024-09-20
    with base as (
    select concat(symbol_in,'➡️',symbol_out) as pairs,
    sum(amount_out_usd) as amount_usd
    from ethereum.defi.ez_dex_swaps
    where origin_from_address in ('0x940362b46faf7df48af1c8989d809f50466b5fca','0xf7e8033366166f92eb477b7b38e0d47d47b43326','0x719981cf7d1a1dc681a1cf0c6b1eeee090d0fed6')
    group by 1
    union all

    select concat(symbol_in,'➡️',symbol_out) as pairs,
    sum(amount_out_usd) as amount_usd
    from arbitrum.defi.ez_dex_swaps
    where origin_from_address in ('0x940362b46faf7df48af1c8989d809f50466b5fca','0xf7e8033366166f92eb477b7b38e0d47d47b43326','0x719981cf7d1a1dc681a1cf0c6b1eeee090d0fed6')
    group by 1

    union all

    select concat(symbol_in,'➡️',symbol_out) as pairs,
    sum(amount_out_usd) as amount_usd
    from polygon.defi.ez_dex_swaps
    where origin_from_address in ('0x940362b46faf7df48af1c8989d809f50466b5fca','0xf7e8033366166f92eb477b7b38e0d47d47b43326','0x719981cf7d1a1dc681a1cf0c6b1eeee090d0fed6')
    group by 1

    union all

    select concat(symbol_in,'➡️',symbol_out) as pairs,
    sum(amount_out_usd) as amount_usd
    from bsc.defi.ez_dex_swaps
    where origin_from_address in ('0x940362b46faf7df48af1c8989d809f50466b5fca','0xf7e8033366166f92eb477b7b38e0d47d47b43326','0x719981cf7d1a1dc681a1cf0c6b1eeee090d0fed6')
    group by 1

    union all

    select concat(symbol_in,'➡️',symbol_out) as pairs,
    sum(amount_out_usd) as amount_usd
    from optimism.defi.ez_dex_swaps
    where origin_from_address in ('0x940362b46faf7df48af1c8989d809f50466b5fca','0xf7e8033366166f92eb477b7b38e0d47d47b43326','0x719981cf7d1a1dc681a1cf0c6b1eeee090d0fed6')
    QueryRunArchived: QueryRun has been archived