mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
25 lines
840 B
Solidity
25 lines
840 B
Solidity
// SPDX-License-Identifier: agpl-3.0
|
|
pragma solidity 0.6.12;
|
|
|
|
interface IDebtTokenBase {
|
|
/**
|
|
* @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
|
|
);
|
|
}
|