khanhTotal Borrows amount and number of transactions on Ethereum per monthly
    Updated 2022-09-23
    select
    date_trunc('month', block_timestamp) as month,
    count(distinct(tx_hash)) as tx_num,
    sum (borrowed_usd) as total_borrowed_usd
    from ethereum.aave.ez_borrows
    where aave_version ilike 'Aave V2'
    group by month
    order by month
    Run a query to Download Data