mirror of
				https://github.com/Instadapp/aave-protocol-v2.git
				synced 2024-07-29 21:47:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.8 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 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
 | |
|   );
 | |
| 
 | |
|   /**
 | |
|    * @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,
 | |
|     bytes calldata params
 | |
|   ) external;
 | |
| }
 | 
