Borrow Rate
function borrowRatePerBlock() returns (uint)SErc20 sToken = SToken(0x3FDA...);
uint borrowRateMantissa = sToken.borrowRatePerBlock();const sToken = SEther.at(0x3FDB...);
const borrowRate = (await sToken.methods.borrowRatePerBlock().call()) / 1e18;Last updated
Was this helpful?