@bgd-labs/aave-address-book 1.9.2 → 1.10.0

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 CHANGED
@@ -2,6 +2,13 @@
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.10.0](https://github.com/bgd-labs/aave-address-book/compare/v1.9.2...v1.10.0) (2023-01-25)
6
+
7
+
8
+ ### Features
9
+
10
+ * added extra functions to extended IACLManager ([#71](https://github.com/bgd-labs/aave-address-book/issues/71)) ([99ef8a2](https://github.com/bgd-labs/aave-address-book/commit/99ef8a26feabcf4af275b543aa88d91e3afc149a))
11
+
5
12
  ### [1.9.2](https://github.com/bgd-labs/aave-address-book/compare/v1.9.1...v1.9.2) (2023-01-20)
6
13
 
7
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bgd-labs/aave-address-book",
3
- "version": "1.9.2",
3
+ "version": "1.10.0",
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
@@ -78,4 +78,10 @@ interface IACLManager is BasicIACLManager {
78
78
  function DEFAULT_ADMIN_ROLE() external pure returns (bytes32);
79
79
 
80
80
  function renounceRole(bytes32 role, address account) external;
81
+
82
+ function getRoleAdmin(bytes32 role) external view returns (bytes32);
83
+
84
+ function grantRole(bytes32 role, address account) external;
85
+
86
+ function revokeRole(bytes32 role, address account) external;
81
87
  }