Updated 2022-05-23
    select
    b.ASSET_NAME as assets,
    sum(SWAP_FROM_ASSET_ID) as volume
    from flipside_prod_db.algorand.swaps s left outer join flipside_prod_db.algorand.asset b on s.SWAP_TO_ASSET_ID=b.ASSET_ID
    where BLOCK_TIMESTAMP>='2022-04-01'
    and SWAP_FROM_ASSET_ID='386195940 '
    group by 1
    Run a query to Download Data