mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
31 lines
1.1 KiB
Solidity
31 lines
1.1 KiB
Solidity
// SPDX-License-Identifier: agpl-3.0
|
|
pragma solidity 0.6.12;
|
|
|
|
import {ILendingPool} from './ILendingPool.sol';
|
|
import {IAaveIncentivesController} from './IAaveIncentivesController.sol';
|
|
|
|
/**
|
|
* @title IInitializableDebtToken
|
|
* @notice Interface for the initialize function common between debt tokens
|
|
* @author Aave
|
|
**/
|
|
interface IInitializableDebtToken {
|
|
/**
|
|
* @dev Initializes the debt token.
|
|
* @param pool The address of the lending pool where this aToken will be used
|
|
* @param underlyingAsset The address of the underlying asset of this aToken (E.g. WETH for aWETH)
|
|
* @param incentivesController The smart contract managing potential incentives distribution
|
|
* @param debtTokenDecimals The decimals of the debtToken, same as the underlying asset's
|
|
* @param debtTokenName The name of the token
|
|
* @param debtTokenSymbol The symbol of the token
|
|
*/
|
|
function initialize(
|
|
ILendingPool pool,
|
|
address underlyingAsset,
|
|
IAaveIncentivesController incentivesController,
|
|
uint8 debtTokenDecimals,
|
|
string memory debtTokenName,
|
|
string memory debtTokenSymbol
|
|
) external;
|
|
}
|