From f78dce9d2b31bc93a3c14601809e7ec9ebb42628 Mon Sep 17 00:00:00 2001 From: David Racero Date: Wed, 12 May 2021 17:23:50 +0200 Subject: [PATCH] fix: undo changes at IAToken.sol --- contracts/interfaces/IAToken.sol | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/contracts/interfaces/IAToken.sol b/contracts/interfaces/IAToken.sol index 3a6ac663..cf0ea261 100644 --- a/contracts/interfaces/IAToken.sol +++ b/contracts/interfaces/IAToken.sol @@ -99,4 +99,9 @@ interface IAToken is IERC20, IScaledBalanceToken, IInitializableAToken { * @dev Returns the address of the incentives controller contract **/ function getIncentivesController() external view returns (IAaveIncentivesController); + + /** + * @dev Returns the address of the underlying asset of this aToken (E.g. WETH for aWETH) + **/ + function UNDERLYING_ASSET_ADDRESS() external view returns (address); }