sunslingerDegenbox to aUST Smart Contract
    Updated 2021-12-22
    select
    'From the Degenbox to aUST holding address' as name,
    sum(amount) as amount
    from
    ethereum.udm_events
    where from_address = '0xd96f48665a1410c0cd669a88898eca36b9fc2cce' --Degenbox
    and to_address = '0xe6191aa754f9a881e0a73f2028edf324242f39e2' --aUST address
    and symbol = 'UST'
    group by name
    union all
    select
    'From aUST holding address to the Degenbox' as name,
    sum(amount) as amount from ethereum.udm_events
    where from_address = '0xe6191aa754f9a881e0a73f2028edf324242f39e2' --aUST address
    and to_address = '0xd96f48665a1410c0cd669a88898eca36b9fc2cce' --Degenbox
    and symbol = 'UST'
    group by name
    Run a query to Download Data