Reserve Factor
function reserveFactorMantissa() returns (uint)SErc20 sToken = SToken(0x3FDA...);
uint reserveFactorMantissa = sToken.reserveFactorMantissa();const sToken = SEther.at(0x3FDB...);
const reserveFactor = (await sToken.methods.reserveFactorMantissa().call()) / 1e18;Last updated
Was this helpful?