mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
364 lines
12 KiB
Solidity
364 lines
12 KiB
Solidity
// SPDX-License-Identifier: agpl-3.0
|
|
pragma solidity ^0.6.8;
|
|
|
|
import {LendingPoolAddressesProvider} from '../configuration/LendingPoolAddressesProvider.sol';
|
|
import {ReserveConfiguration} from '../libraries/configuration/ReserveConfiguration.sol';
|
|
pragma experimental ABIEncoderV2;
|
|
|
|
interface ILendingPool {
|
|
/**
|
|
* @dev emitted on deposit
|
|
* @param reserve the address of the reserve
|
|
* @param user the address of the user
|
|
* @param amount the amount to be deposited
|
|
* @param referral the referral number of the action
|
|
**/
|
|
event Deposit(
|
|
address indexed reserve,
|
|
address indexed user,
|
|
uint256 amount,
|
|
uint16 indexed referral
|
|
);
|
|
|
|
/**
|
|
* @dev emitted during a withdraw action.
|
|
* @param reserve the address of the reserve
|
|
* @param user the address of the user
|
|
* @param amount the amount to be withdrawn
|
|
**/
|
|
event Withdraw(address indexed reserve, address indexed user, uint256 amount);
|
|
|
|
/**
|
|
* @dev emitted on borrow
|
|
* @param reserve the address of the reserve
|
|
* @param user the address of the user
|
|
* @param amount the amount to be deposited
|
|
* @param borrowRateMode the rate mode, can be either 1-stable or 2-variable
|
|
* @param borrowRate the rate at which the user has borrowed
|
|
* @param referral the referral number of the action
|
|
**/
|
|
event Borrow(
|
|
address indexed reserve,
|
|
address indexed user,
|
|
uint256 amount,
|
|
uint256 borrowRateMode,
|
|
uint256 borrowRate,
|
|
uint16 indexed referral
|
|
);
|
|
/**
|
|
* @dev emitted on repay
|
|
* @param reserve the address of the reserve
|
|
* @param user the address of the user for which the repay has been executed
|
|
* @param repayer the address of the user that has performed the repay action
|
|
* @param amount the amount repaid
|
|
**/
|
|
event Repay(
|
|
address indexed reserve,
|
|
address indexed user,
|
|
address indexed repayer,
|
|
uint256 amount
|
|
);
|
|
/**
|
|
* @dev emitted when a user performs a rate swap
|
|
* @param reserve the address of the reserve
|
|
* @param user the address of the user executing the swap
|
|
**/
|
|
event Swap(address indexed reserve, address indexed user, uint256 timestamp);
|
|
|
|
/**
|
|
* @dev emitted when a user enables a reserve as collateral
|
|
* @param reserve the address of the reserve
|
|
* @param user the address of the user
|
|
**/
|
|
event ReserveUsedAsCollateralEnabled(address indexed reserve, address indexed user);
|
|
|
|
/**
|
|
* @dev emitted when a user disables a reserve as collateral
|
|
* @param reserve the address of the reserve
|
|
* @param user the address of the user
|
|
**/
|
|
event ReserveUsedAsCollateralDisabled(address indexed reserve, address indexed user);
|
|
|
|
/**
|
|
* @dev emitted when the stable rate of a user gets rebalanced
|
|
* @param reserve the address of the reserve
|
|
* @param user the address of the user for which the rebalance has been executed
|
|
**/
|
|
event RebalanceStableBorrowRate(address indexed reserve, address indexed user);
|
|
/**
|
|
* @dev emitted when a flashloan is executed
|
|
* @param target the address of the flashLoanReceiver
|
|
* @param reserve the address of the reserve
|
|
* @param amount the amount requested
|
|
* @param totalFee the total fee on the amount
|
|
**/
|
|
event FlashLoan(
|
|
address indexed target,
|
|
address indexed reserve,
|
|
uint256 amount,
|
|
uint256 totalFee
|
|
);
|
|
/**
|
|
* @dev these events are not emitted directly by the LendingPool
|
|
* but they are declared here as the LendingPoolLiquidationManager
|
|
* is executed using a delegateCall().
|
|
* This allows to have the events in the generated ABI for LendingPool.
|
|
**/
|
|
|
|
/**
|
|
* @dev emitted when a borrow fee is liquidated
|
|
* @param collateral the address of the collateral being liquidated
|
|
* @param reserve the address of the reserve
|
|
* @param user the address of the user being liquidated
|
|
* @param feeLiquidated the total fee liquidated
|
|
* @param liquidatedCollateralForFee the amount of collateral received by the protocol in exchange for the fee
|
|
**/
|
|
event OriginationFeeLiquidated(
|
|
address indexed collateral,
|
|
address indexed reserve,
|
|
address indexed user,
|
|
uint256 feeLiquidated,
|
|
uint256 liquidatedCollateralForFee
|
|
);
|
|
/**
|
|
* @dev emitted when a borrower is liquidated
|
|
* @param collateral the address of the collateral being liquidated
|
|
* @param reserve the address of the reserve
|
|
* @param user the address of the user being liquidated
|
|
* @param purchaseAmount the total amount liquidated
|
|
* @param liquidatedCollateralAmount the amount of collateral being liquidated
|
|
* @param accruedBorrowInterest the amount of interest accrued by the borrower since the last action
|
|
* @param liquidator the address of the liquidator
|
|
* @param receiveAToken true if the liquidator wants to receive aTokens, false otherwise
|
|
**/
|
|
event LiquidationCall(
|
|
address indexed collateral,
|
|
address indexed reserve,
|
|
address indexed user,
|
|
uint256 purchaseAmount,
|
|
uint256 liquidatedCollateralAmount,
|
|
uint256 accruedBorrowInterest,
|
|
address liquidator,
|
|
bool receiveAToken
|
|
);
|
|
|
|
/**
|
|
* @dev deposits The underlying asset into the reserve. A corresponding amount of the overlying asset (aTokens)
|
|
* is minted.
|
|
* @param _reserve the address of the reserve
|
|
* @param _amount the amount to be deposited
|
|
* @param _referralCode integrators are assigned a referral code and can potentially receive rewards.
|
|
**/
|
|
function deposit(
|
|
address _reserve,
|
|
uint256 _amount,
|
|
uint16 _referralCode
|
|
) external;
|
|
|
|
/**
|
|
* @dev withdraws the assets of _user.
|
|
* @param _reserve the address of the reserve
|
|
* @param _amount the underlying amount to be redeemed
|
|
**/
|
|
function withdraw(address _reserve, uint256 _amount) external;
|
|
|
|
/**
|
|
* @dev Allows users to borrow a specific amount of the reserve currency, provided that the borrower
|
|
* already deposited enough collateral.
|
|
* @param _reserve the address of the reserve
|
|
* @param _amount the amount to be borrowed
|
|
* @param _interestRateMode the interest rate mode at which the user wants to borrow. Can be 0 (STABLE) or 1 (VARIABLE)
|
|
**/
|
|
function borrow(
|
|
address _reserve,
|
|
uint256 _amount,
|
|
uint256 _interestRateMode,
|
|
uint16 _referralCode
|
|
) external;
|
|
|
|
/**
|
|
* @notice repays a borrow on the specific reserve, for the specified amount (or for the whole amount, if uint256(-1) is specified).
|
|
* @dev the target user is defined by _onBehalfOf. If there is no repayment on behalf of another account,
|
|
* _onBehalfOf must be equal to msg.sender.
|
|
* @param _reserve the address of the reserve on which the user borrowed
|
|
* @param _amount the amount to repay, or uint256(-1) if the user wants to repay everything
|
|
* @param _onBehalfOf the address for which msg.sender is repaying.
|
|
**/
|
|
function repay(
|
|
address _reserve,
|
|
uint256 _amount,
|
|
uint256 _rateMode,
|
|
address _onBehalfOf
|
|
) external;
|
|
|
|
/**
|
|
* @dev borrowers can user this function to swap between stable and variable borrow rate modes.
|
|
* @param _reserve the address of the reserve on which the user borrowed
|
|
* @param _rateMode the rate mode that the user wants to swap
|
|
**/
|
|
function swapBorrowRateMode(address _reserve, uint256 _rateMode) external;
|
|
|
|
/**
|
|
* @dev rebalances the stable interest rate of a user if current liquidity rate > user stable rate.
|
|
* this is regulated by Aave to ensure that the protocol is not abused, and the user is paying a fair
|
|
* rate. Anyone can call this function.
|
|
* @param _reserve the address of the reserve
|
|
* @param _user the address of the user to be rebalanced
|
|
**/
|
|
function rebalanceStableBorrowRate(address _reserve, address _user) external;
|
|
|
|
/**
|
|
* @dev allows depositors to enable or disable a specific deposit as collateral.
|
|
* @param _reserve the address of the reserve
|
|
* @param _useAsCollateral true if the user wants to user the deposit as collateral, false otherwise.
|
|
**/
|
|
function setUserUseReserveAsCollateral(address _reserve, bool _useAsCollateral) external;
|
|
|
|
/**
|
|
* @dev users can invoke this function to liquidate an undercollateralized position.
|
|
* @param _reserve the address of the collateral to liquidated
|
|
* @param _reserve the address of the principal reserve
|
|
* @param _user the address of the borrower
|
|
* @param _purchaseAmount the amount of principal that the liquidator wants to repay
|
|
* @param _receiveAToken true if the liquidators wants to receive the aTokens, false if
|
|
* he wants to receive the underlying asset directly
|
|
**/
|
|
function liquidationCall(
|
|
address _collateral,
|
|
address _reserve,
|
|
address _user,
|
|
uint256 _purchaseAmount,
|
|
bool _receiveAToken
|
|
) external;
|
|
|
|
/**
|
|
* @dev allows smartcontracts to access the liquidity of the pool within one transaction,
|
|
* as long as the amount taken plus a fee is returned. NOTE There are security concerns for developers of flashloan receiver contracts
|
|
* that must be kept into consideration. For further details please visit https://developers.aave.com
|
|
* @param _receiver The address of the contract receiving the funds. The receiver should implement the IFlashLoanReceiver interface.
|
|
* @param _reserve the address of the principal reserve
|
|
* @param _amount the amount requested for this flashloan
|
|
**/
|
|
function flashLoan(
|
|
address _receiver,
|
|
address _reserve,
|
|
uint256 _amount,
|
|
bytes calldata _params
|
|
) external;
|
|
|
|
/**
|
|
* @dev accessory functions to fetch data from the core contract
|
|
**/
|
|
|
|
function getReserveConfigurationData(address _reserve)
|
|
external
|
|
view
|
|
returns (
|
|
uint256 decimals,
|
|
uint256 ltv,
|
|
uint256 liquidationThreshold,
|
|
uint256 liquidationBonus,
|
|
address interestRateStrategyAddress,
|
|
bool usageAsCollateralEnabled,
|
|
bool borrowingEnabled,
|
|
bool stableBorrowRateEnabled,
|
|
bool isActive,
|
|
bool isFreezed
|
|
);
|
|
|
|
function getReserveTokensAddresses(address _reserve)
|
|
external
|
|
view
|
|
returns (
|
|
address aTokenAddress,
|
|
address stableDebtTokenAddress,
|
|
address variableDebtTokenAddress
|
|
);
|
|
|
|
function getReserveData(address _reserve)
|
|
external
|
|
view
|
|
returns (
|
|
uint256 availableLiquidity,
|
|
uint256 totalBorrowsStable,
|
|
uint256 totalBorrowsVariable,
|
|
uint256 liquidityRate,
|
|
uint256 variableBorrowRate,
|
|
uint256 stableBorrowRate,
|
|
uint256 averageStableBorrowRate,
|
|
uint256 liquidityIndex,
|
|
uint256 variableBorrowIndex,
|
|
uint40 lastUpdateTimestamp
|
|
);
|
|
|
|
function getUserAccountData(address _user)
|
|
external
|
|
view
|
|
returns (
|
|
uint256 totalCollateralETH,
|
|
uint256 totalBorrowsETH,
|
|
uint256 availableBorrowsETH,
|
|
uint256 currentLiquidationThreshold,
|
|
uint256 ltv,
|
|
uint256 healthFactor
|
|
);
|
|
|
|
function getUserReserveData(address _reserve, address _user)
|
|
external
|
|
view
|
|
returns (
|
|
uint256 currentATokenBalance,
|
|
uint256 currentStableDebt,
|
|
uint256 currentVariableDebt,
|
|
uint256 principalStableDebt,
|
|
uint256 principalVariableDebt,
|
|
uint256 stableBorrowRate,
|
|
uint256 liquidityRate,
|
|
uint256 variableBorrowIndex,
|
|
uint40 stableRateLastUpdated,
|
|
bool usageAsCollateralEnabled
|
|
);
|
|
|
|
/**
|
|
* @dev initializes a reserve
|
|
* @param _reserve the address of the reserve
|
|
* @param _aTokenAddress the address of the overlying aToken contract
|
|
* @param _interestRateStrategyAddress the address of the interest rate strategy contract
|
|
**/
|
|
function initReserve(
|
|
address _reserve,
|
|
address _aTokenAddress,
|
|
address _stableDebtAddress,
|
|
address _variableDebtAddress,
|
|
address _interestRateStrategyAddress
|
|
) external;
|
|
|
|
/**
|
|
* @dev updates the address of the interest rate strategy contract
|
|
* @param _reserve the address of the reserve
|
|
* @param _rateStrategyAddress the address of the interest rate strategy contract
|
|
**/
|
|
|
|
function setReserveInterestRateStrategyAddress(address _reserve, address _rateStrategyAddress)
|
|
external;
|
|
|
|
function setConfiguration(address _reserve, uint256 _configuration) external;
|
|
|
|
function getConfiguration(address _reserve)
|
|
external
|
|
view
|
|
returns (ReserveConfiguration.Map memory);
|
|
|
|
function getReserveNormalizedIncome(address _reserve) external view returns (uint256);
|
|
|
|
function getReserveNormalizedVariableDebt(address _reserve) external view returns (uint256);
|
|
|
|
function balanceDecreaseAllowed(
|
|
address _reserve,
|
|
address _user,
|
|
uint256 _amount
|
|
) external view returns (bool);
|
|
|
|
function getReserves() external view returns (address[] memory);
|
|
}
|