freemartianWeekly Borrow Volume - ETH
    Updated 2022-07-13
    select sum(amount) as Borrow_volume,
    symbol,
    date_trunc('week', block_timestamp) as TIME
    from ethereum.sushi.ez_borrowing
    where action = 'Borrow'
    and symbol in ('USDC', 'DAI', 'USDT', 'sUSD', 'FRAX')
    group by symbol, TIME
    Run a query to Download Data