InterestRateModel
Given supply and demand values, the InterestRateModel is queried to calculate and return both fixed and variable rates. Contains parameters as state variables that are used to get the different points in the utilization curve for an asset. There's one InterestRateModel contract per enabled asset.
Public State Variables
fixedCurveA
Scale factor of the fixed curve.
fixedCurveB
Origin intercept of the fixed curve.
fixedMaxUtilization
Asymptote of the fixed curve.
floatingCurveA
Scale factor of the floating curve.
floatingCurveB
Origin intercept of the floating curve.
floatingMaxUtilization
Asymptote of the floating curve.
View Methods
fixedBorrowRate
Gets the rate to borrow a certain amount at a certain maturity with supply/demand values in the fixed rate pool and assets from the backup supplier.
Parameters
Returns
floatingBorrowRate
Returns the interest rate integral from utilizationBefore to utilizationAfter.
Minimum and maximum checks to avoid negative rate.
Parameters
Returns
Last updated