@bgd-labs/aave-address-book 1.6.0 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/package.json +1 -1
- package/src/AaveV3.sol +10 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [1.6.1](https://github.com/bgd-labs/aave-address-book/compare/v1.6.0...v1.6.1) (2023-01-05)
|
|
6
|
+
|
|
5
7
|
## [1.6.0](https://github.com/bgd-labs/aave-address-book/compare/v1.5.2...v1.6.0) (2023-01-05)
|
|
6
8
|
|
|
7
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bgd-labs/aave-address-book",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "This repository contains an up-to-date registry of all addresses of the Aave ecosystem's smart contracts, for its usage in Solidity codebases.",
|
|
5
5
|
"directories": {
|
|
6
6
|
"lib": "lib"
|
package/src/AaveV3.sol
CHANGED
|
@@ -8,11 +8,11 @@ import {IPool} from 'aave-v3-core/contracts/interfaces/IPool.sol';
|
|
|
8
8
|
import {IPoolConfigurator} from 'aave-v3-core/contracts/interfaces/IPoolConfigurator.sol';
|
|
9
9
|
import {IPriceOracleGetter} from 'aave-v3-core/contracts/interfaces/IPriceOracleGetter.sol';
|
|
10
10
|
import {IAaveOracle} from 'aave-v3-core/contracts/interfaces/IAaveOracle.sol';
|
|
11
|
-
import {IACLManager} from 'aave-v3-core/contracts/interfaces/IACLManager.sol';
|
|
11
|
+
import {IACLManager as BasicIACLManager} from 'aave-v3-core/contracts/interfaces/IACLManager.sol';
|
|
12
12
|
import {IPoolDataProvider} from 'aave-v3-core/contracts/interfaces/IPoolDataProvider.sol';
|
|
13
|
-
import {IDefaultInterestRateStrategy} from
|
|
14
|
-
import {IReserveInterestRateStrategy} from
|
|
15
|
-
import {IDefaultInterestRateStrategy as IInterestRateStrategy} from
|
|
13
|
+
import {IDefaultInterestRateStrategy} from 'aave-v3-core/contracts/interfaces/IDefaultInterestRateStrategy.sol';
|
|
14
|
+
import {IReserveInterestRateStrategy} from 'aave-v3-core/contracts/interfaces/IReserveInterestRateStrategy.sol';
|
|
15
|
+
import {IDefaultInterestRateStrategy as IInterestRateStrategy} from 'aave-v3-core/contracts/interfaces/IDefaultInterestRateStrategy.sol';
|
|
16
16
|
import {IPoolDataProvider as IAaveProtocolDataProvider} from 'aave-v3-core/contracts/interfaces/IPoolDataProvider.sol';
|
|
17
17
|
|
|
18
18
|
/**
|
|
@@ -72,3 +72,9 @@ interface ICollector {
|
|
|
72
72
|
*/
|
|
73
73
|
function setFundsAdmin(address admin) external;
|
|
74
74
|
}
|
|
75
|
+
|
|
76
|
+
interface IACLManager is BasicIACLManager {
|
|
77
|
+
function hasRole(bytes32 role, address account) external view returns (bool);
|
|
78
|
+
|
|
79
|
+
function DEFAULT_ADMIN_ROLE() external pure returns (bytes32);
|
|
80
|
+
}
|