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