Borrow Balance
function borrowBalanceCurrent(address account) returns (uint)SErc20 aToken = SToken(0x3FDA...);
uint borrows = aToken.borrowBalanceCurrent(msg.caller);const aToken = SEther.at(0x3FDB...);
const borrows = await aToken.methods.borrowBalanceCurrent(account).call();Last updated