bachiaave arc1
    Updated 2021-09-02
    select date_trunc(day, block_timestamp) as date, sum(token_price) as total_price, avg(token_price) as average_price from aave.deposits
    where symbol ='USDC' and date > dateadd(month, -3, getdate()) group by date order by date;
    Run a query to Download Data