mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
20 lines
588 B
Solidity
20 lines
588 B
Solidity
// SPDX-License-Identifier: agpl-3.0
|
|
pragma solidity 0.6.12;
|
|
|
|
/**
|
|
* @title ILendingRateOracle interface
|
|
* @notice Interface for the Aave borrow rate oracle. Provides the average market borrow rate to be used as a base for the stable borrow rate calculations
|
|
**/
|
|
|
|
interface ILendingRateOracle {
|
|
/**
|
|
@dev returns the market borrow rate in ray
|
|
**/
|
|
function getMarketBorrowRate(address asset) external view returns (uint256);
|
|
|
|
/**
|
|
@dev sets the market borrow rate. Rate value must be in ray
|
|
**/
|
|
function setMarketBorrowRate(address asset, uint256 rate) external;
|
|
}
|