From 03dc5370ee22739d44173c72f116db270e3c85f4 Mon Sep 17 00:00:00 2001 From: The3D Date: Mon, 1 Mar 2021 18:33:48 +0100 Subject: [PATCH] Added initialized events --- contracts/interfaces/IInitializableAToken.sol | 22 +++++++++++++++++++ .../interfaces/IInitializableDebtToken.sol | 20 +++++++++++++++++ contracts/protocol/tokenization/AToken.sol | 11 ++++++++++ .../protocol/tokenization/StableDebtToken.sol | 10 +++++++++ .../tokenization/VariableDebtToken.sol | 10 +++++++++ 5 files changed, 73 insertions(+) diff --git a/contracts/interfaces/IInitializableAToken.sol b/contracts/interfaces/IInitializableAToken.sol index 599fe6bb..5038580a 100644 --- a/contracts/interfaces/IInitializableAToken.sol +++ b/contracts/interfaces/IInitializableAToken.sol @@ -10,6 +10,28 @@ import {IAaveIncentivesController} from './IAaveIncentivesController.sol'; * @author Aave **/ interface IInitializableAToken { + /** + * @dev Emitted when an aToken is initialized + * @param underlyingAsset The address of the underlying asset + * @param pool The address of the associated lending pool + * @param treasury The address of the treasury + * @param incentivesController The address of the incentives controller for this aToken + * @param aTokenDecimals the decimals of the underlying + * @param aTokenName the name of the aToken + * @param aTokenSymbol the symbol of the aToken + * @param params A set of encoded parameters for additional initialization + **/ + event Initialized( + address indexed underlyingAsset, + address indexed pool, + address treasury, + address incentivesController, + uint8 aTokenDecimals, + string aTokenName, + string aTokenSymbol, + bytes params + ); + /** * @dev Initializes the aToken * @param pool The address of the lending pool where this aToken will be used diff --git a/contracts/interfaces/IInitializableDebtToken.sol b/contracts/interfaces/IInitializableDebtToken.sol index e310b108..c5bdb3f5 100644 --- a/contracts/interfaces/IInitializableDebtToken.sol +++ b/contracts/interfaces/IInitializableDebtToken.sol @@ -10,6 +10,26 @@ import {IAaveIncentivesController} from './IAaveIncentivesController.sol'; * @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 diff --git a/contracts/protocol/tokenization/AToken.sol b/contracts/protocol/tokenization/AToken.sol index cfb45621..f2784732 100644 --- a/contracts/protocol/tokenization/AToken.sol +++ b/contracts/protocol/tokenization/AToken.sol @@ -96,6 +96,17 @@ contract AToken is _treasury = treasury; _underlyingAsset = underlyingAsset; _incentivesController = incentivesController; + + emit Initialized( + underlyingAsset, + address(pool), + treasury, + address(incentivesController), + aTokenDecimals, + aTokenName, + aTokenSymbol, + params + ); } /** diff --git a/contracts/protocol/tokenization/StableDebtToken.sol b/contracts/protocol/tokenization/StableDebtToken.sol index 3f8a5bfd..2212e9cf 100644 --- a/contracts/protocol/tokenization/StableDebtToken.sol +++ b/contracts/protocol/tokenization/StableDebtToken.sol @@ -54,6 +54,16 @@ contract StableDebtToken is IStableDebtToken, DebtTokenBase { _pool = pool; _underlyingAsset = underlyingAsset; _incentivesController = incentivesController; + + emit Initialized( + underlyingAsset, + address(pool), + address(incentivesController), + debtTokenDecimals, + debtTokenName, + debtTokenSymbol, + params + ); } /** diff --git a/contracts/protocol/tokenization/VariableDebtToken.sol b/contracts/protocol/tokenization/VariableDebtToken.sol index 157c703a..a7a28176 100644 --- a/contracts/protocol/tokenization/VariableDebtToken.sol +++ b/contracts/protocol/tokenization/VariableDebtToken.sol @@ -48,6 +48,16 @@ contract VariableDebtToken is DebtTokenBase, IVariableDebtToken { _pool = pool; _underlyingAsset = underlyingAsset; _incentivesController = incentivesController; + + emit Initialized( + underlyingAsset, + address(pool), + address(incentivesController), + debtTokenDecimals, + debtTokenName, + debtTokenSymbol, + params + ); } /**