AndyCoolSwap To/From STBL
    Updated 2022-05-17
    select sum(SWAP_TO_AMOUNT) as swap_to_amount, 'swap to' as status
    from flipside_prod_db.algorand.swaps s
    where SWAP_TO_ASSET_ID = '465865291'
    and block_timestamp between '2022-05-08' and '2022-05-14'
    UNION
    select sum(SWAP_from_AMOUNT) as swap_from_amount, 'swap from' as status
    from flipside_prod_db.algorand.swaps s
    where SWAP_from_ASSET_ID = '465865291'
    and block_timestamp between '2022-05-08' and '2022-05-14'