ILendingPool

Git Source

Functions

deposit

*Deposits an amount of underlying asset into the reserve, receiving in return overlying aTokens.

  • E.g. User deposits 100 USDC and gets in return 100 aUSDC*
function deposit(address asset, uint256 amount, address onBehalfOf, uint16 referralCode) external;

Parameters

NameTypeDescription
assetaddressThe address of the underlying asset to deposit
amountuint256The amount to be deposited
onBehalfOfaddressThe address that will receive the aTokens, same as msg.sender if the user wants to receive them on his own wallet, or a different address if the beneficiary of aTokens is a different wallet
referralCodeuint16Code used to register the integrator originating the operation, for potential rewards. 0 if the action is executed directly by the user, without any middle-man

withdraw

Withdraws an amount of underlying asset from the reserve, burning the equivalent aTokens owned E.g. User has 100 aUSDC, calls withdraw() and receives 100 USDC, burning the 100 aUSDC

function withdraw(address asset, uint256 amount, address to) external returns (uint256);

Parameters

NameTypeDescription
assetaddressThe address of the underlying asset to withdraw
amountuint256The underlying amount to be withdrawn - Send the value type(uint256).max in order to withdraw the whole aToken balance
toaddressAddress that will receive the underlying, same as msg.sender if the user wants to receive it on his own wallet, or a different address if the beneficiary is a different wallet

Returns

NameTypeDescription
<none>uint256The final amount withdrawn

borrow

*Allows users to borrow a specific amount of the reserve underlying asset, provided that the borrower already deposited enough collateral, or he was given enough allowance by a credit delegator on the corresponding debt token (StableDebtToken or VariableDebtToken)

  • E.g. User borrows 100 USDC passing as onBehalfOf his own address, receiving the 100 USDC in his wallet and 100 stable/variable debt tokens, depending on the interestRateMode*
function borrow(address asset, uint256 amount, uint256 interestRateMode, uint16 referralCode, address onBehalfOf)
    external;

Parameters

NameTypeDescription
assetaddressThe address of the underlying asset to borrow
amountuint256The amount to be borrowed
interestRateModeuint256The interest rate mode at which the user wants to borrow: 1 for Stable, 2 for Variable
referralCodeuint16Code used to register the integrator originating the operation, for potential rewards. 0 if the action is executed directly by the user, without any middle-man
onBehalfOfaddressAddress of the user who will receive the debt. Should be the address of the borrower itself calling the function if he wants to borrow against his own collateral, or the address of the credit delegator if he has been given credit delegation allowance

repay

Repays a borrowed amount on a specific reserve, burning the equivalent debt tokens owned

  • E.g. User repays 100 USDC, burning 100 variable/stable debt tokens of the onBehalfOf address
function repay(address asset, uint256 amount, uint256 rateMode, address onBehalfOf) external returns (uint256);

Parameters

NameTypeDescription
assetaddressThe address of the borrowed underlying asset previously borrowed
amountuint256The amount to repay - Send the value type(uint256).max in order to repay the whole debt for asset on the specific debtMode
rateModeuint256The interest rate mode at of the debt the user wants to repay: 1 for Stable, 2 for Variable
onBehalfOfaddressAddress of the user who will get his debt reduced/removed. Should be the address of the user calling the function if he wants to reduce/remove his own debt, or the address of any other other borrower whose debt should be removed

Returns

NameTypeDescription
<none>uint256The final amount repaid

swapBorrowRateMode

Allows a borrower to swap his debt between stable and variable mode, or viceversa

function swapBorrowRateMode(address asset, uint256 rateMode) external;

Parameters

NameTypeDescription
assetaddressThe address of the underlying asset borrowed
rateModeuint256The rate mode that the user wants to swap to

rebalanceStableBorrowRate

*Rebalances the stable interest rate of a user to the current stable rate defined on the reserve.

  • Users can be rebalanced if the following conditions are satisfied:
  1. Usage ratio is above 95%
  2. the current deposit APY is below REBALANCE_UP_THRESHOLD * maxVariableBorrowRate, which means that too much has been borrowed at a stable rate and depositors are not earning enough*
function rebalanceStableBorrowRate(address asset, address user) external;

Parameters

NameTypeDescription
assetaddressThe address of the underlying asset borrowed
useraddressThe address of the user to be rebalanced

setUserUseReserveAsCollateral

Allows depositors to enable/disable a specific deposited asset as collateral

function setUserUseReserveAsCollateral(address asset, bool useAsCollateral) external;

Parameters

NameTypeDescription
assetaddressThe address of the underlying asset deposited
useAsCollateralbooltrue if the user wants to use the deposit as collateral, false otherwise

liquidationCall

*Function to liquidate a non-healthy position collateral-wise, with Health Factor below 1

  • The caller (liquidator) covers debtToCover amount of debt of the user getting liquidated, and receives a proportionally amount of the collateralAsset plus a bonus to cover market risk*
function liquidationCall(
    address collateralAsset,
    address debtAsset,
    address user,
    uint256 debtToCover,
    bool receiveAToken
) external;

Parameters

NameTypeDescription
collateralAssetaddressThe address of the underlying asset used as collateral, to receive as result of the liquidation
debtAssetaddressThe address of the underlying borrowed asset to be repaid with the liquidation
useraddressThe address of the borrower getting liquidated
debtToCoveruint256The debt amount of borrowed asset the liquidator wants to cover
receiveATokenbooltrue if the liquidators wants to receive the collateral aTokens, false if he wants to receive the underlying collateral asset directly

flashLoan

Allows smartcontracts to access the liquidity of the pool within one transaction, as long as the amount taken plus a fee is returned. IMPORTANT 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

function flashLoan(
    address receiverAddress,
    address[] calldata assets,
    uint256[] calldata amounts,
    uint256[] calldata modes,
    address onBehalfOf,
    bytes calldata params,
    uint16 referralCode
) external;

Parameters

NameTypeDescription
receiverAddressaddressThe address of the contract receiving the funds, implementing the IFlashLoanReceiver interface
assetsaddress[]The addresses of the assets being flash-borrowed
amountsuint256[]The amounts amounts being flash-borrowed
modesuint256[]Types of the debt to open if the flash loan is not returned: 0 -> Don't open any debt, just revert if funds can't be transferred from the receiver 1 -> Open debt at stable rate for the value of the amount flash-borrowed to the onBehalfOf address 2 -> Open debt at variable rate for the value of the amount flash-borrowed to the onBehalfOf address
onBehalfOfaddressThe address that will receive the debt in the case of using on modes 1 or 2
paramsbytesVariadic packed params to pass to the receiver as extra information
referralCodeuint16Code used to register the integrator originating the operation, for potential rewards. 0 if the action is executed directly by the user, without any middle-man

getUserAccountData

Returns the user account data across all the reserves

function getUserAccountData(address user)
    external
    view
    returns (
        uint256 totalCollateralETH,
        uint256 totalDebtETH,
        uint256 availableBorrowsETH,
        uint256 currentLiquidationThreshold,
        uint256 ltv,
        uint256 healthFactor
    );

Parameters

NameTypeDescription
useraddressThe address of the user

Returns

NameTypeDescription
totalCollateralETHuint256the total collateral in ETH of the user
totalDebtETHuint256the total debt in ETH of the user
availableBorrowsETHuint256the borrowing power left of the user
currentLiquidationThresholduint256the liquidation threshold of the user
ltvuint256the loan to value of the user
healthFactoruint256the current health factor of the user

initReserve

function initReserve(
    address reserve,
    address aTokenAddress,
    address stableDebtAddress,
    address variableDebtAddress,
    address interestRateStrategyAddress
) external;

setReserveInterestRateStrategyAddress

function setReserveInterestRateStrategyAddress(address reserve, address rateStrategyAddress) external;

setConfiguration

function setConfiguration(address reserve, uint256 configuration) external;

getConfiguration

Returns the configuration of the reserve

function getConfiguration(address asset) external view returns (DataTypes.ReserveConfigurationMap memory);

Parameters

NameTypeDescription
assetaddressThe address of the underlying asset of the reserve

Returns

NameTypeDescription
<none>DataTypes.ReserveConfigurationMapThe configuration of the reserve

getUserConfiguration

Returns the configuration of the user across all the reserves

function getUserConfiguration(address user) external view returns (DataTypes.UserConfigurationMap memory);

Parameters

NameTypeDescription
useraddressThe user address

Returns

NameTypeDescription
<none>DataTypes.UserConfigurationMapThe configuration of the user

getReserveNormalizedIncome

Returns the normalized income normalized income of the reserve

function getReserveNormalizedIncome(address asset) external view returns (uint256);

Parameters

NameTypeDescription
assetaddressThe address of the underlying asset of the reserve

Returns

NameTypeDescription
<none>uint256The reserve's normalized income

getReserveNormalizedVariableDebt

Returns the normalized variable debt per unit of asset

function getReserveNormalizedVariableDebt(address asset) external view returns (uint256);

Parameters

NameTypeDescription
assetaddressThe address of the underlying asset of the reserve

Returns

NameTypeDescription
<none>uint256The reserve normalized variable debt

getReserveData

Returns the state and configuration of the reserve

function getReserveData(address asset) external view returns (DataTypes.ReserveData memory);

Parameters

NameTypeDescription
assetaddressThe address of the underlying asset of the reserve

Returns

NameTypeDescription
<none>DataTypes.ReserveDataThe state of the reserve

finalizeTransfer

function finalizeTransfer(
    address asset,
    address from,
    address to,
    uint256 amount,
    uint256 balanceFromAfter,
    uint256 balanceToBefore
) external;

getReservesList

function getReservesList() external view returns (address[] memory);

getAddressesProvider

function getAddressesProvider() external view returns (ILendingPoolAddressesProvider);

setPause

function setPause(bool val) external;

paused

function paused() external view returns (bool);

FLASHLOAN_PREMIUM_TOTAL

function FLASHLOAN_PREMIUM_TOTAL() external view returns (uint256);

Events

Deposit

Emitted on deposit()

event Deposit(
    address indexed reserve, address user, address indexed onBehalfOf, uint256 amount, uint16 indexed referral
);

Withdraw

Emitted on withdraw()

event Withdraw(address indexed reserve, address indexed user, address indexed to, uint256 amount);

Borrow

Emitted on borrow() and flashLoan() when debt needs to be opened

event Borrow(
    address indexed reserve,
    address user,
    address indexed onBehalfOf,
    uint256 amount,
    uint256 borrowRateMode,
    uint256 borrowRate,
    uint16 indexed referral
);

Repay

Emitted on repay()

event Repay(address indexed reserve, address indexed user, address indexed repayer, uint256 amount);

Swap

Emitted on swapBorrowRateMode()

event Swap(address indexed reserve, address indexed user, uint256 rateMode);

ReserveUsedAsCollateralEnabled

Emitted on setUserUseReserveAsCollateral()

event ReserveUsedAsCollateralEnabled(address indexed reserve, address indexed user);

ReserveUsedAsCollateralDisabled

Emitted on setUserUseReserveAsCollateral()

event ReserveUsedAsCollateralDisabled(address indexed reserve, address indexed user);

RebalanceStableBorrowRate

Emitted on rebalanceStableBorrowRate()

event RebalanceStableBorrowRate(address indexed reserve, address indexed user);

FlashLoan

Emitted on flashLoan()

event FlashLoan(
    address indexed target,
    address indexed initiator,
    address indexed asset,
    uint256 amount,
    uint256 premium,
    uint16 referralCode
);

Paused

Emitted when the pause is triggered.

event Paused();

Unpaused

Emitted when the pause is lifted.

event Unpaused();

LiquidationCall

Emitted when a borrower is liquidated. This event is emitted by the LendingPool via LendingPoolCollateral manager using a DELEGATECALL This allows to have the events in the generated ABI for LendingPool.

event LiquidationCall(
    address indexed collateralAsset,
    address indexed debtAsset,
    address indexed user,
    uint256 debtToCover,
    uint256 liquidatedCollateralAmount,
    address liquidator,
    bool receiveAToken
);

ReserveDataUpdated

Emitted when the state of a reserve is updated. NOTE: This event is actually declared in the ReserveLogic library and emitted in the updateInterestRates() function. Since the function is internal, the event will actually be fired by the LendingPool contract. The event is therefore replicated here so it gets added to the LendingPool ABI

event ReserveDataUpdated(
    address indexed reserve,
    uint256 liquidityRate,
    uint256 stableBorrowRate,
    uint256 variableBorrowRate,
    uint256 liquidityIndex,
    uint256 variableBorrowIndex
);