mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
41 lines
1009 B
Solidity
41 lines
1009 B
Solidity
// SPDX-License-Identifier: agpl-3.0
|
|
pragma solidity ^0.6.12;
|
|
|
|
/**
|
|
@title IReserveInterestRateStrategyInterface interface
|
|
@notice Interface for the calculation of the interest rates.
|
|
*/
|
|
|
|
interface IReserveInterestRateStrategy {
|
|
/**
|
|
* @dev returns the base variable borrow rate, in rays
|
|
*/
|
|
function baseVariableBorrowRate() external view returns (uint256);
|
|
|
|
/**
|
|
* @dev returns the maximum variable borrow rate
|
|
*/
|
|
function getMaxVariableBorrowRate() external view returns (uint256);
|
|
|
|
/**
|
|
* @dev calculates the liquidity, stable, and variable rates depending on the current utilization rate
|
|
* and the base parameters
|
|
*
|
|
*/
|
|
function calculateInterestRates(
|
|
address reserve,
|
|
uint256 utilizationRate,
|
|
uint256 totalStableDebt,
|
|
uint256 totalVariableDebt,
|
|
uint256 averageStableBorrowRate,
|
|
uint256 reserveFactor
|
|
)
|
|
external
|
|
view
|
|
returns (
|
|
uint256 liquidityRate,
|
|
uint256 stableBorrowRate,
|
|
uint256 variableBorrowRate
|
|
);
|
|
}
|