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