freemartianBorrowing Stable Coins - Polygon
    Updated 2022-07-13
    select sum(amount) as Borrow_volume,
    symbol, lending_pool, count(distinct borrower) as borrowers
    from polygon.sushi.ez_borrowing
    where action = 'Borrow'
    and symbol in ('USDC', 'DAI', 'USDT', 'sUSD', 'FRAX')
    group by symbol, lending_pool
    Run a query to Download Data