boomer77Volume by token flashloan
    Updated 2021-09-01
    select symbol, sum(flashloan_amount_usd) as Volume, sum(flashloan_amount) as Vol_token,
    case when symbol in ('TUSD', 'BUSD') then vol_token
    else volume
    end as Final_Volume
    from aave.flashloans
    where aave_version = 'Aave V2'
    group by 1
    order by 4 desc
    Run a query to Download Data