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