Total Borrow
function totalBorrowsCurrent() returns (uint)AErc20 aToken = AToken(0x3FDA...);
uint borrows = aToken.totalBorrowsCurrent();const aToken = CEther.at(0x3FDB...);
const borrows = (await aToken.methods.totalBorrowsCurrent().call());Last updated