Reserve Factor

The reserve factor defines the portion of borrower interest that is converted into treasury reserves.

FBep20 / FBnb

function reserveFactorMantissa() returns (uint)
  • RETURN: The current reserve factor as an unsigned integer, scaled by 1e18

Solidity

FBep20 fToken = FToken(0x3FDA...);
uint reserveFactorMantissa = fToken.reserveFactorMantissa();

Web3 1.0

const fToken = FBnb.at(0x3FDB...);
const reserveFactor = (await fToken.methods.reserveFactorMantissa().call()) / 1e18;

Last updated