boomer77flashloan monthly v2 final
    Updated 2021-09-01
    select date_trunc('month', block_timestamp) as Months, sum(flashloan_amount_usd) as volume, sum(flashloan_amount) as vol_token,
    count(tx_id) as flashloan_count
    from aave.flashloans
    where aave_version = 'Aave V2'
    group by 1
    order by 1 desc
    Run a query to Download Data