Fixed events, removed unused constants in addressesProvider

This commit is contained in:
emilio 2020-10-29 18:03:19 +01:00
parent 6b26e39d5f
commit e4dc22e50e
5 changed files with 17 additions and 21 deletions

View File

@ -19,16 +19,11 @@ contract LendingPoolAddressesProvider is Ownable, ILendingPoolAddressesProvider
mapping(bytes32 => address) private _addresses; mapping(bytes32 => address) private _addresses;
bytes32 private constant LENDING_POOL = 'LENDING_POOL'; bytes32 private constant LENDING_POOL = 'LENDING_POOL';
bytes32 private constant LENDING_POOL_CORE = 'LENDING_POOL_CORE';
bytes32 private constant LENDING_POOL_CONFIGURATOR = 'LENDING_POOL_CONFIGURATOR'; bytes32 private constant LENDING_POOL_CONFIGURATOR = 'LENDING_POOL_CONFIGURATOR';
bytes32 private constant AAVE_ADMIN = 'AAVE_ADMIN'; bytes32 private constant AAVE_ADMIN = 'AAVE_ADMIN';
bytes32 private constant LENDING_POOL_COLLATERAL_MANAGER = 'COLLATERAL_MANAGER'; bytes32 private constant LENDING_POOL_COLLATERAL_MANAGER = 'COLLATERAL_MANAGER';
bytes32 private constant LENDING_POOL_FLASHLOAN_PROVIDER = 'FLASHLOAN_PROVIDER';
bytes32 private constant DATA_PROVIDER = 'DATA_PROVIDER';
bytes32 private constant ETHEREUM_ADDRESS = 'ETHEREUM_ADDRESS';
bytes32 private constant PRICE_ORACLE = 'PRICE_ORACLE'; bytes32 private constant PRICE_ORACLE = 'PRICE_ORACLE';
bytes32 private constant LENDING_RATE_ORACLE = 'LENDING_RATE_ORACLE'; bytes32 private constant LENDING_RATE_ORACLE = 'LENDING_RATE_ORACLE';
bytes32 private constant WALLET_BALANCE_PROVIDER = 'WALLET_BALANCE_PROVIDER';
/** /**
* @dev Sets an address for an id, allowing to cover it or not with a proxy * @dev Sets an address for an id, allowing to cover it or not with a proxy

View File

@ -74,7 +74,7 @@ interface ILendingPool {
* @param reserve the address of the reserve * @param reserve the address of the reserve
* @param user the address of the user executing the swap * @param user the address of the user executing the swap
**/ **/
event Swap(address indexed reserve, address indexed user); event Swap(address indexed reserve, address indexed user, uint256 rateMode);
/** /**
* @dev emitted when a user enables a reserve as collateral * @dev emitted when a user enables a reserve as collateral

View File

@ -352,7 +352,7 @@ contract LendingPool is VersionedInitializable, ILendingPool, LendingPoolStorage
reserve.updateInterestRates(asset, reserve.aTokenAddress, 0, 0); reserve.updateInterestRates(asset, reserve.aTokenAddress, 0, 0);
emit Swap(asset, msg.sender); emit Swap(asset, msg.sender, rateMode);
} }
/** /**

View File

@ -47,7 +47,7 @@ contract LendingPoolConfigurator is VersionedInitializable {
* @param asset the address of the reserve * @param asset the address of the reserve
* @param stableRateEnabled true if stable rate borrowing is enabled, false otherwise * @param stableRateEnabled true if stable rate borrowing is enabled, false otherwise
**/ **/
event BorrowingEnabledOnReserve(address asset, bool stableRateEnabled); event BorrowingEnabledOnReserve(address indexed asset, bool stableRateEnabled);
/** /**
* @dev emitted when borrowing is disabled on a reserve * @dev emitted when borrowing is disabled on a reserve
@ -116,42 +116,42 @@ contract LendingPoolConfigurator is VersionedInitializable {
* @param asset the address of the reserve * @param asset the address of the reserve
* @param ltv the new value for the loan to value * @param ltv the new value for the loan to value
**/ **/
event ReserveBaseLtvChanged(address asset, uint256 ltv); event ReserveBaseLtvChanged(address indexed asset, uint256 ltv);
/** /**
* @dev emitted when a reserve factor is updated * @dev emitted when a reserve factor is updated
* @param asset the address of the reserve * @param asset the address of the reserve
* @param factor the new reserve factor * @param factor the new reserve factor
**/ **/
event ReserveFactorChanged(address asset, uint256 factor); event ReserveFactorChanged(address indexed asset, uint256 factor);
/** /**
* @dev emitted when a reserve liquidation threshold is updated * @dev emitted when a reserve liquidation threshold is updated
* @param asset the address of the reserve * @param asset the address of the reserve
* @param threshold the new value for the liquidation threshold * @param threshold the new value for the liquidation threshold
**/ **/
event ReserveLiquidationThresholdChanged(address asset, uint256 threshold); event ReserveLiquidationThresholdChanged(address indexed asset, uint256 threshold);
/** /**
* @dev emitted when a reserve liquidation bonus is updated * @dev emitted when a reserve liquidation bonus is updated
* @param asset the address of the reserve * @param asset the address of the reserve
* @param bonus the new value for the liquidation bonus * @param bonus the new value for the liquidation bonus
**/ **/
event ReserveLiquidationBonusChanged(address asset, uint256 bonus); event ReserveLiquidationBonusChanged(address indexed asset, uint256 bonus);
/** /**
* @dev emitted when the reserve decimals are updated * @dev emitted when the reserve decimals are updated
* @param asset the address of the reserve * @param asset the address of the reserve
* @param decimals the new decimals * @param decimals the new decimals
**/ **/
event ReserveDecimalsChanged(address asset, uint256 decimals); event ReserveDecimalsChanged(address indexed asset, uint256 decimals);
/** /**
* @dev emitted when a reserve interest strategy contract is updated * @dev emitted when a reserve interest strategy contract is updated
* @param asset the address of the reserve * @param asset the address of the reserve
* @param strategy the new address of the interest strategy contract * @param strategy the new address of the interest strategy contract
**/ **/
event ReserveInterestRateStrategyChanged(address asset, address strategy); event ReserveInterestRateStrategyChanged(address indexed asset, address strategy);
/** /**
* @dev emitted when an aToken implementation is upgraded * @dev emitted when an aToken implementation is upgraded
@ -159,7 +159,7 @@ contract LendingPoolConfigurator is VersionedInitializable {
* @param proxy the aToken proxy address * @param proxy the aToken proxy address
* @param implementation the new aToken implementation * @param implementation the new aToken implementation
**/ **/
event ATokenUpgraded(address asset, address proxy, address implementation); event ATokenUpgraded(address indexed asset, address indexed proxy, address indexed implementation);
/** /**
* @dev emitted when the implementation of a stable debt token is upgraded * @dev emitted when the implementation of a stable debt token is upgraded
@ -167,7 +167,7 @@ contract LendingPoolConfigurator is VersionedInitializable {
* @param proxy the stable debt token proxy address * @param proxy the stable debt token proxy address
* @param implementation the new aToken implementation * @param implementation the new aToken implementation
**/ **/
event StableDebtTokenUpgraded(address asset, address proxy, address implementation); event StableDebtTokenUpgraded(address indexed asset, address indexed proxy, address indexed implementation);
/** /**
* @dev emitted when the implementation of a variable debt token is upgraded * @dev emitted when the implementation of a variable debt token is upgraded
@ -175,7 +175,7 @@ contract LendingPoolConfigurator is VersionedInitializable {
* @param proxy the variable debt token proxy address * @param proxy the variable debt token proxy address
* @param implementation the new aToken implementation * @param implementation the new aToken implementation
**/ **/
event VariableDebtTokenUpgraded(address asset, address proxy, address implementation); event VariableDebtTokenUpgraded(address indexed asset, address indexed proxy, address indexed implementation);
ILendingPoolAddressesProvider internal addressesProvider; ILendingPoolAddressesProvider internal addressesProvider;
ILendingPool internal pool; ILendingPool internal pool;

View File

@ -163,25 +163,26 @@
}, },
"ReserveLogic": { "ReserveLogic": {
"buidlerevm": { "buidlerevm": {
"address": "0xFAe0fd738dAbc8a0426F47437322b6d026A9FD95", "address": "0x78Ee8Fb9fE5abD5e347Fc94c2fb85596d1f60e3c",
"deployer": "0xc783df8a850f42e7F7e57013759C285caa701eB6" "deployer": "0xc783df8a850f42e7F7e57013759C285caa701eB6"
} }
}, },
"GenericLogic": { "GenericLogic": {
"buidlerevm": { "buidlerevm": {
"address": "0x6082731fdAba4761277Fb31299ebC782AD3bCf24", "address": "0x920d847fE49E54C19047ba8bc236C45A8068Bca7",
"deployer": "0xc783df8a850f42e7F7e57013759C285caa701eB6" "deployer": "0xc783df8a850f42e7F7e57013759C285caa701eB6"
} }
}, },
"ValidationLogic": { "ValidationLogic": {
"buidlerevm": { "buidlerevm": {
"address": "0x8456161947DFc1fC159A0B26c025cD2b4bba0c3e", "address": "0xA4765Ff72A9F3CfE73089bb2c3a41B838DF71574",
"deployer": "0xc783df8a850f42e7F7e57013759C285caa701eB6" "deployer": "0xc783df8a850f42e7F7e57013759C285caa701eB6"
} }
}, },
"LendingPool": { "LendingPool": {
"buidlerevm": { "buidlerevm": {
"address": "0xD9273d497eDBC967F39d419461CfcF382a0A822e" "address": "0x35c1419Da7cf0Ff885B8Ef8EA9242FEF6800c99b",
"deployer": "0xc783df8a850f42e7F7e57013759C285caa701eB6"
} }
}, },
"LendingPoolConfigurator": { "LendingPoolConfigurator": {