Updated 2023-11-12
    select sum(amount) from(
    select sum(amount) as amount from arbitrum.core.ez_token_transfers
    where contract_address = '0xaf88d065e77c8cc2239327c5edb3a432268e5831'
    and from_address = '0xc9a43964b791e5abd13b98fac710132abfca873e'
    and to_address = '0x724dc807b04555b71ed48a6896b6f41593b8c637'
    UNION
    select -sum(amount) as amount from arbitrum.core.ez_token_transfers
    where contract_address = '0xaf88d065e77c8cc2239327c5edb3a432268e5831'
    and from_address = '0x724dc807b04555b71ed48a6896b6f41593b8c637'
    and to_address = '0xc9a43964b791e5abd13b98fac710132abfca873e')
    Run a query to Download Data