{
    "Function": "supplyRatePerBlock",
    "File": "contracts/InterestRateModel.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "borrowRatePerBlock"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function supplyRatePerBlock(ILendingPair _pair, address _token) external view returns(uint) {\n    return borrowRatePerBlock(_pair, _token) * (100e18 - SYSTEM_RATE) / 100e18;\n  }"
}