@bgd-labs/aave-address-book 1.5.2 → 1.6.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.6.0](https://github.com/bgd-labs/aave-address-book/compare/v1.5.2...v1.6.0) (2023-01-05)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* added permission manager to arc pool ([#54](https://github.com/bgd-labs/aave-address-book/issues/54)) ([665e647](https://github.com/bgd-labs/aave-address-book/commit/665e647180b1a304048a57842cf0c83b0ba13168))
|
|
11
|
+
|
|
5
12
|
### [1.5.2](https://github.com/bgd-labs/aave-address-book/compare/v1.5.1...v1.5.2) (2022-12-22)
|
|
6
13
|
|
|
7
14
|
### [1.5.1](https://github.com/bgd-labs/aave-address-book/compare/v1.5.0...v1.5.1) (2022-12-21)
|
|
@@ -8,3 +8,4 @@ export declare const EMERGENCY_ADMIN = "0x33B09130b035d6D7e57d76fEa0873d9545FA75
|
|
|
8
8
|
export declare const COLLECTOR = "0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c";
|
|
9
9
|
export declare const COLLECTOR_CONTROLLER = "0x3d569673dAa0575c936c7c67c4E6AedA69CC630C";
|
|
10
10
|
export declare const CHAIN_ID = 1;
|
|
11
|
+
export declare const PERMISSION_MANAGER = "0xF4a1F5fEA79C3609514A417425971FadC10eCfBE";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CHAIN_ID = exports.COLLECTOR_CONTROLLER = exports.COLLECTOR = exports.EMERGENCY_ADMIN = exports.POOL_ADMIN = exports.AAVE_PROTOCOL_DATA_PROVIDER = exports.ORACLE = exports.POOL_CONFIGURATOR = exports.POOL = exports.POOL_ADDRESSES_PROVIDER = void 0;
|
|
3
|
+
exports.PERMISSION_MANAGER = exports.CHAIN_ID = exports.COLLECTOR_CONTROLLER = exports.COLLECTOR = exports.EMERGENCY_ADMIN = exports.POOL_ADMIN = exports.AAVE_PROTOCOL_DATA_PROVIDER = exports.ORACLE = exports.POOL_CONFIGURATOR = exports.POOL = exports.POOL_ADDRESSES_PROVIDER = void 0;
|
|
4
4
|
// AUTOGENERATED - DON'T MANUALLY CHANGE
|
|
5
5
|
exports.POOL_ADDRESSES_PROVIDER = "0x6FdfafB66d39cD72CFE7984D3Bbcc76632faAb00";
|
|
6
6
|
exports.POOL = "0x37D7306019a38Af123e4b245Eb6C28AF552e0bB0";
|
|
@@ -12,3 +12,4 @@ exports.EMERGENCY_ADMIN = "0x33B09130b035d6D7e57d76fEa0873d9545FA7557";
|
|
|
12
12
|
exports.COLLECTOR = "0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c";
|
|
13
13
|
exports.COLLECTOR_CONTROLLER = "0x3d569673dAa0575c936c7c67c4E6AedA69CC630C";
|
|
14
14
|
exports.CHAIN_ID = 1;
|
|
15
|
+
exports.PERMISSION_MANAGER = "0xF4a1F5fEA79C3609514A417425971FadC10eCfBE";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bgd-labs/aave-address-book",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.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"
|
|
@@ -12,3 +12,4 @@ export const COLLECTOR = "0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c";
|
|
|
12
12
|
export const COLLECTOR_CONTROLLER =
|
|
13
13
|
"0x3d569673dAa0575c936c7c67c4E6AedA69CC630C";
|
|
14
14
|
export const CHAIN_ID = 1;
|
|
15
|
+
export const PERMISSION_MANAGER = "0xF4a1F5fEA79C3609514A417425971FadC10eCfBE";
|