2021-01-28 10:05:19 +00:00
|
|
|
// 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 {
|
2021-03-01 17:33:48 +00:00
|
|
|
/**
|
|
|
|
* @dev Emitted when a debt token is initialized
|
|
|
|
* @param underlyingAsset The address of the underlying asset
|
|
|
|
* @param pool The address of the associated lending pool
|
|
|
|
* @param incentivesController The address of the incentives controller for this aToken
|
|
|
|
* @param debtTokenDecimals the decimals of the debt token
|
|
|
|
* @param debtTokenName the name of the debt token
|
|
|
|
* @param debtTokenSymbol the symbol of the debt token
|
|
|
|
* @param params A set of encoded parameters for additional initialization
|
|
|
|
**/
|
|
|
|
event Initialized(
|
|
|
|
address indexed underlyingAsset,
|
|
|
|
address indexed pool,
|
|
|
|
address incentivesController,
|
|
|
|
uint8 debtTokenDecimals,
|
|
|
|
string debtTokenName,
|
|
|
|
string debtTokenSymbol,
|
|
|
|
bytes params
|
|
|
|
);
|
|
|
|
|
2021-01-28 10:05:19 +00:00
|
|
|
/**
|
|
|
|
* @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,
|
2021-02-26 17:17:10 +00:00
|
|
|
string memory debtTokenSymbol,
|
|
|
|
bytes calldata params
|
2021-01-28 10:05:19 +00:00
|
|
|
) external;
|
|
|
|
}
|