๐Interest Rate Model
Details the Jump Rate Model that dynamically adjusts borrow and supply rates based on utilization to maintain optimal capital efficiency.
Why Jump Rate Model?
Key Parameters
Utilization Formula
utilization = borrows / (cash + borrows - reserves)Borrow Rate Calculation
if (util <= kink) {
return ((util * multiplierPerBlock) / BASE) + baseRatePerBlock;
} else {
uint normalRate = ((kink * multiplierPerBlock) / BASE) + baseRatePerBlock;
uint excessUtil = util - kink;
return ((excessUtil * jumpMultiplierPerBlock) / BASE) + normalRate;
}Supply Rate Calculation
Example Constructor Usage
Last updated