Total Borrow
function totalBorrowsCurrent() returns (uint)BErc20 bToken = BToken(0x3FDA...);
uint borrows = bToken.totalBorrowsCurrent();const bToken = CEther.at(0x3FDB...);
const borrows = (await bToken.methods.totalBorrowsCurrent().call());Last updated