@bgd-labs/aave-address-book 1.6.1 → 1.8.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 +14 -0
- package/README.md +12 -0
- package/dist/AaveAddressBook.d.ts +1 -1
- package/dist/AaveAddressBook.js +2 -2
- package/dist/{AaveV3EthereumDraft.d.ts → AaveV3Ethereum.d.ts} +8 -5
- package/dist/AaveV3Ethereum.js +23 -0
- package/package.json +1 -1
- package/src/AaveAddressBook.sol +1 -1
- package/src/{AaveV3EthereumDraft.sol → AaveV3Ethereum.sol} +12 -6
- package/src/ts/AaveAddressBook.ts +1 -1
- package/src/ts/{AaveV3EthereumDraft.ts → AaveV3Ethereum.ts} +10 -5
- package/dist/AaveV3EthereumDraft.js +0 -20
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
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.8.0](https://github.com/bgd-labs/aave-address-book/compare/v1.7.0...v1.8.0) (2023-01-19)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* added LISTING_ENGINE for Aave v3 Ethereum ([#61](https://github.com/bgd-labs/aave-address-book/issues/61)) ([b9e7f36](https://github.com/bgd-labs/aave-address-book/commit/b9e7f3666e9c0cba44e86f0119d49030abf655dc))
|
|
11
|
+
|
|
12
|
+
## [1.7.0](https://github.com/bgd-labs/aave-address-book/compare/v1.6.1...v1.7.0) (2023-01-16)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* added ethereum v3 addresses ([#58](https://github.com/bgd-labs/aave-address-book/issues/58)) ([4607fc2](https://github.com/bgd-labs/aave-address-book/commit/4607fc24663ee21405ca1be84fb0b19705dd1d47))
|
|
18
|
+
|
|
5
19
|
### [1.6.1](https://github.com/bgd-labs/aave-address-book/compare/v1.6.0...v1.6.1) (2023-01-05)
|
|
6
20
|
|
|
7
21
|
## [1.6.0](https://github.com/bgd-labs/aave-address-book/compare/v1.5.2...v1.6.0) (2023-01-05)
|
package/README.md
CHANGED
|
@@ -137,6 +137,18 @@ forge test
|
|
|
137
137
|
|
|
138
138
|
To list a new pool in the address book, you simply need to add a new pool in the [pools config](./scripts/config.ts) and run `yarn generate`.
|
|
139
139
|
|
|
140
|
+
### Adding new Addresses
|
|
141
|
+
|
|
142
|
+
a) Adding an address that **can be optained via onchain calls** so it doesn't need to be hardcoded on the configs:
|
|
143
|
+
|
|
144
|
+
To achieve an addition here you need to add the address to the respective [v2 type](https://github.com/bgd-labs/aave-address-book/blob/main/scripts/generator_v2.ts#L11) and/or [v3 type](https://github.com/bgd-labs/aave-address-book/blob/main/scripts/generator_v3.ts#L11) and adjust the generator scripts accordingly. New types should be added to the [AaveV2](https://github.com/bgd-labs/aave-address-book/blob/main/src/AaveV2.sol) and [AaveV3](https://github.com/bgd-labs/aave-address-book/blob/main/src/AaveV3.sol) files.
|
|
145
|
+
|
|
146
|
+
b) Adding an address that **cannot be optained via onchain calls** so it needs to be manually maintained:
|
|
147
|
+
|
|
148
|
+
To achieve an addition here, you need to alter the [additionalAddresses section](https://github.com/bgd-labs/aave-address-book/blob/main/scripts/config.ts#L46) on the pool type and add your address to the respecive pools. Additional addresses will currently be exported as type `address`. There's currently no possibility to define a custom type.
|
|
149
|
+
|
|
150
|
+
In any case you need to run `yarn generate` afterwards and commit the altered artifacts.
|
|
151
|
+
|
|
140
152
|
## Sample projects
|
|
141
153
|
|
|
142
154
|
- [aave v2 asset listing template](https://github.com/bgd-labs/example-aave-v2-listing)
|
|
@@ -20,4 +20,4 @@ export * as AaveV3Fantom from "./AaveV3Fantom";
|
|
|
20
20
|
export * as AaveV3Harmony from "./AaveV3Harmony";
|
|
21
21
|
export * as AaveV3Optimism from "./AaveV3Optimism";
|
|
22
22
|
export * as AaveV3OptimismGoerli from "./AaveV3OptimismGoerli";
|
|
23
|
-
export * as
|
|
23
|
+
export * as AaveV3Ethereum from "./AaveV3Ethereum";
|
package/dist/AaveAddressBook.js
CHANGED
|
@@ -23,7 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
26
|
+
exports.AaveV3Ethereum = exports.AaveV3OptimismGoerli = exports.AaveV3Optimism = exports.AaveV3Harmony = exports.AaveV3Fantom = exports.AaveV3FantomTestnet = exports.AaveV3ArbitrumGoerli = exports.AaveV3Arbitrum = exports.AaveV3Avalanche = exports.AaveV2Avalanche = exports.AaveV3Fuji = exports.AaveV2Fuji = exports.AaveV3Polygon = exports.AaveV2Polygon = exports.AaveV3Mumbai = exports.AaveV2Mumbai = exports.AaveV3Goerli = exports.AaveV2Goerli = exports.AaveV2EthereumArc = exports.AaveV2EthereumAMM = exports.AaveV2Ethereum = exports.AaveSafetyModule = exports.AaveGovernanceV2 = void 0;
|
|
27
27
|
exports.AaveGovernanceV2 = __importStar(require("./AaveGovernanceV2"));
|
|
28
28
|
exports.AaveSafetyModule = __importStar(require("./AaveSafetyModule"));
|
|
29
29
|
// autogenerated entrypoints
|
|
@@ -47,4 +47,4 @@ exports.AaveV3Fantom = __importStar(require("./AaveV3Fantom"));
|
|
|
47
47
|
exports.AaveV3Harmony = __importStar(require("./AaveV3Harmony"));
|
|
48
48
|
exports.AaveV3Optimism = __importStar(require("./AaveV3Optimism"));
|
|
49
49
|
exports.AaveV3OptimismGoerli = __importStar(require("./AaveV3OptimismGoerli"));
|
|
50
|
-
exports.
|
|
50
|
+
exports.AaveV3Ethereum = __importStar(require("./AaveV3Ethereum"));
|
|
@@ -6,11 +6,14 @@ export declare const AAVE_PROTOCOL_DATA_PROVIDER = "0x7B4EB56E7CD4b454BA8ff71E45
|
|
|
6
6
|
export declare const ACL_MANAGER = "0xc2aaCf6553D20d1e9d78E365AAba8032af9c85b0";
|
|
7
7
|
export declare const ACL_ADMIN = "0xEE56e2B3D491590B5b31738cC34d5232F378a8D5";
|
|
8
8
|
export declare const CHAIN_ID = 1;
|
|
9
|
-
export declare const WETH_GATEWAY = "
|
|
10
|
-
export declare const EMISSION_MANAGER = "
|
|
9
|
+
export declare const WETH_GATEWAY = "0xD322A49006FC828F9B5B37Ab215F99B4E5caB19C";
|
|
10
|
+
export declare const EMISSION_MANAGER = "0x223d844fc4B006D67c0cDbd39371A9F73f69d974";
|
|
11
11
|
export declare const COLLECTOR_CONTROLLER = "0x3d569673dAa0575c936c7c67c4E6AedA69CC630C";
|
|
12
12
|
export declare const COLLECTOR = "0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c";
|
|
13
|
-
export declare const DEFAULT_VARIABLE_DEBT_TOKEN_IMPL_REV_1 = "
|
|
14
|
-
export declare const DEFAULT_STABLE_DEBT_TOKEN_IMPL_REV_1 = "
|
|
15
|
-
export declare const DEFAULT_A_TOKEN_IMPL_REV_1 = "
|
|
13
|
+
export declare const DEFAULT_VARIABLE_DEBT_TOKEN_IMPL_REV_1 = "0xaC725CB59D16C81061BDeA61041a8A5e73DA9EC6";
|
|
14
|
+
export declare const DEFAULT_STABLE_DEBT_TOKEN_IMPL_REV_1 = "0x15C5620dfFaC7c7366EED66C20Ad222DDbB1eD57";
|
|
15
|
+
export declare const DEFAULT_A_TOKEN_IMPL_REV_1 = "0x7EfFD7b47Bfd17e52fB7559d3f924201b9DbfF3d";
|
|
16
16
|
export declare const DEFAULT_INCENTIVES_CONTROLLER = "0x8164Cc65827dcFe994AB23944CBC90e0aa80bFcb";
|
|
17
|
+
export declare const REPAY_WITH_COLLATERAL_ADAPTER = "0x1809f186D680f239420B56948C58F8DbbCdf1E18";
|
|
18
|
+
export declare const SWAP_COLLATERAL_ADAPTER = "0x872fBcb1B582e8Cd0D0DD4327fBFa0B4C2730995";
|
|
19
|
+
export declare const LISTING_ENGINE = "0xCA76Ebd8617a03126B6FB84F9b1c1A0fB71C2633";
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LISTING_ENGINE = exports.SWAP_COLLATERAL_ADAPTER = exports.REPAY_WITH_COLLATERAL_ADAPTER = exports.DEFAULT_INCENTIVES_CONTROLLER = exports.DEFAULT_A_TOKEN_IMPL_REV_1 = exports.DEFAULT_STABLE_DEBT_TOKEN_IMPL_REV_1 = exports.DEFAULT_VARIABLE_DEBT_TOKEN_IMPL_REV_1 = exports.COLLECTOR = exports.COLLECTOR_CONTROLLER = exports.EMISSION_MANAGER = exports.WETH_GATEWAY = exports.CHAIN_ID = exports.ACL_ADMIN = exports.ACL_MANAGER = exports.AAVE_PROTOCOL_DATA_PROVIDER = exports.ORACLE = exports.POOL_CONFIGURATOR = exports.POOL = exports.POOL_ADDRESSES_PROVIDER = void 0;
|
|
4
|
+
// AUTOGENERATED - DON'T MANUALLY CHANGE
|
|
5
|
+
exports.POOL_ADDRESSES_PROVIDER = "0x2f39d218133AFaB8F2B819B1066c7E434Ad94E9e";
|
|
6
|
+
exports.POOL = "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2";
|
|
7
|
+
exports.POOL_CONFIGURATOR = "0x64b761D848206f447Fe2dd461b0c635Ec39EbB27";
|
|
8
|
+
exports.ORACLE = "0x54586bE62E3c3580375aE3723C145253060Ca0C2";
|
|
9
|
+
exports.AAVE_PROTOCOL_DATA_PROVIDER = "0x7B4EB56E7CD4b454BA8ff71E4518426369a138a3";
|
|
10
|
+
exports.ACL_MANAGER = "0xc2aaCf6553D20d1e9d78E365AAba8032af9c85b0";
|
|
11
|
+
exports.ACL_ADMIN = "0xEE56e2B3D491590B5b31738cC34d5232F378a8D5";
|
|
12
|
+
exports.CHAIN_ID = 1;
|
|
13
|
+
exports.WETH_GATEWAY = "0xD322A49006FC828F9B5B37Ab215F99B4E5caB19C";
|
|
14
|
+
exports.EMISSION_MANAGER = "0x223d844fc4B006D67c0cDbd39371A9F73f69d974";
|
|
15
|
+
exports.COLLECTOR_CONTROLLER = "0x3d569673dAa0575c936c7c67c4E6AedA69CC630C";
|
|
16
|
+
exports.COLLECTOR = "0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c";
|
|
17
|
+
exports.DEFAULT_VARIABLE_DEBT_TOKEN_IMPL_REV_1 = "0xaC725CB59D16C81061BDeA61041a8A5e73DA9EC6";
|
|
18
|
+
exports.DEFAULT_STABLE_DEBT_TOKEN_IMPL_REV_1 = "0x15C5620dfFaC7c7366EED66C20Ad222DDbB1eD57";
|
|
19
|
+
exports.DEFAULT_A_TOKEN_IMPL_REV_1 = "0x7EfFD7b47Bfd17e52fB7559d3f924201b9DbfF3d";
|
|
20
|
+
exports.DEFAULT_INCENTIVES_CONTROLLER = "0x8164Cc65827dcFe994AB23944CBC90e0aa80bFcb";
|
|
21
|
+
exports.REPAY_WITH_COLLATERAL_ADAPTER = "0x1809f186D680f239420B56948C58F8DbbCdf1E18";
|
|
22
|
+
exports.SWAP_COLLATERAL_ADAPTER = "0x872fBcb1B582e8Cd0D0DD4327fBFa0B4C2730995";
|
|
23
|
+
exports.LISTING_ENGINE = "0xCA76Ebd8617a03126B6FB84F9b1c1A0fB71C2633";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bgd-labs/aave-address-book",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.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/AaveAddressBook.sol
CHANGED
|
@@ -21,7 +21,7 @@ import {AaveV3Fantom} from "./AaveV3Fantom.sol";
|
|
|
21
21
|
import {AaveV3Harmony} from "./AaveV3Harmony.sol";
|
|
22
22
|
import {AaveV3Optimism} from "./AaveV3Optimism.sol";
|
|
23
23
|
import {AaveV3OptimismGoerli} from "./AaveV3OptimismGoerli.sol";
|
|
24
|
-
import {
|
|
24
|
+
import {AaveV3Ethereum} from "./AaveV3Ethereum.sol";
|
|
25
25
|
|
|
26
26
|
import {AaveGovernanceV2, IGovernanceStrategy} from "./AaveGovernanceV2.sol";
|
|
27
27
|
import {IAaveEcosystemReserveController, AaveMisc} from "./AaveMisc.sol";
|
|
@@ -4,7 +4,7 @@ pragma solidity >=0.6.0;
|
|
|
4
4
|
|
|
5
5
|
import {IPoolAddressesProvider, IPool, IPoolConfigurator, IAaveOracle, IPoolDataProvider, IACLManager, ICollector} from "./AaveV3.sol";
|
|
6
6
|
|
|
7
|
-
library
|
|
7
|
+
library AaveV3Ethereum {
|
|
8
8
|
IPoolAddressesProvider internal constant POOL_ADDRESSES_PROVIDER =
|
|
9
9
|
IPoolAddressesProvider(0x2f39d218133AFaB8F2B819B1066c7E434Ad94E9e);
|
|
10
10
|
|
|
@@ -27,19 +27,25 @@ library AaveV3EthereumDraft {
|
|
|
27
27
|
0xEE56e2B3D491590B5b31738cC34d5232F378a8D5;
|
|
28
28
|
|
|
29
29
|
address internal constant WETH_GATEWAY =
|
|
30
|
-
|
|
30
|
+
0xD322A49006FC828F9B5B37Ab215F99B4E5caB19C;
|
|
31
31
|
address internal constant EMISSION_MANAGER =
|
|
32
|
-
|
|
32
|
+
0x223d844fc4B006D67c0cDbd39371A9F73f69d974;
|
|
33
33
|
address internal constant COLLECTOR_CONTROLLER =
|
|
34
34
|
0x3d569673dAa0575c936c7c67c4E6AedA69CC630C;
|
|
35
35
|
address internal constant COLLECTOR =
|
|
36
36
|
0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c;
|
|
37
37
|
address internal constant DEFAULT_VARIABLE_DEBT_TOKEN_IMPL_REV_1 =
|
|
38
|
-
|
|
38
|
+
0xaC725CB59D16C81061BDeA61041a8A5e73DA9EC6;
|
|
39
39
|
address internal constant DEFAULT_STABLE_DEBT_TOKEN_IMPL_REV_1 =
|
|
40
|
-
|
|
40
|
+
0x15C5620dfFaC7c7366EED66C20Ad222DDbB1eD57;
|
|
41
41
|
address internal constant DEFAULT_A_TOKEN_IMPL_REV_1 =
|
|
42
|
-
|
|
42
|
+
0x7EfFD7b47Bfd17e52fB7559d3f924201b9DbfF3d;
|
|
43
43
|
address internal constant DEFAULT_INCENTIVES_CONTROLLER =
|
|
44
44
|
0x8164Cc65827dcFe994AB23944CBC90e0aa80bFcb;
|
|
45
|
+
address internal constant REPAY_WITH_COLLATERAL_ADAPTER =
|
|
46
|
+
0x1809f186D680f239420B56948C58F8DbbCdf1E18;
|
|
47
|
+
address internal constant SWAP_COLLATERAL_ADAPTER =
|
|
48
|
+
0x872fBcb1B582e8Cd0D0DD4327fBFa0B4C2730995;
|
|
49
|
+
address internal constant LISTING_ENGINE =
|
|
50
|
+
0xCA76Ebd8617a03126B6FB84F9b1c1A0fB71C2633;
|
|
45
51
|
}
|
|
@@ -21,4 +21,4 @@ export * as AaveV3Fantom from "./AaveV3Fantom";
|
|
|
21
21
|
export * as AaveV3Harmony from "./AaveV3Harmony";
|
|
22
22
|
export * as AaveV3Optimism from "./AaveV3Optimism";
|
|
23
23
|
export * as AaveV3OptimismGoerli from "./AaveV3OptimismGoerli";
|
|
24
|
-
export * as
|
|
24
|
+
export * as AaveV3Ethereum from "./AaveV3Ethereum";
|
|
@@ -9,16 +9,21 @@ export const AAVE_PROTOCOL_DATA_PROVIDER =
|
|
|
9
9
|
export const ACL_MANAGER = "0xc2aaCf6553D20d1e9d78E365AAba8032af9c85b0";
|
|
10
10
|
export const ACL_ADMIN = "0xEE56e2B3D491590B5b31738cC34d5232F378a8D5";
|
|
11
11
|
export const CHAIN_ID = 1;
|
|
12
|
-
export const WETH_GATEWAY = "
|
|
13
|
-
export const EMISSION_MANAGER = "
|
|
12
|
+
export const WETH_GATEWAY = "0xD322A49006FC828F9B5B37Ab215F99B4E5caB19C";
|
|
13
|
+
export const EMISSION_MANAGER = "0x223d844fc4B006D67c0cDbd39371A9F73f69d974";
|
|
14
14
|
export const COLLECTOR_CONTROLLER =
|
|
15
15
|
"0x3d569673dAa0575c936c7c67c4E6AedA69CC630C";
|
|
16
16
|
export const COLLECTOR = "0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c";
|
|
17
17
|
export const DEFAULT_VARIABLE_DEBT_TOKEN_IMPL_REV_1 =
|
|
18
|
-
"
|
|
18
|
+
"0xaC725CB59D16C81061BDeA61041a8A5e73DA9EC6";
|
|
19
19
|
export const DEFAULT_STABLE_DEBT_TOKEN_IMPL_REV_1 =
|
|
20
|
-
"
|
|
20
|
+
"0x15C5620dfFaC7c7366EED66C20Ad222DDbB1eD57";
|
|
21
21
|
export const DEFAULT_A_TOKEN_IMPL_REV_1 =
|
|
22
|
-
"
|
|
22
|
+
"0x7EfFD7b47Bfd17e52fB7559d3f924201b9DbfF3d";
|
|
23
23
|
export const DEFAULT_INCENTIVES_CONTROLLER =
|
|
24
24
|
"0x8164Cc65827dcFe994AB23944CBC90e0aa80bFcb";
|
|
25
|
+
export const REPAY_WITH_COLLATERAL_ADAPTER =
|
|
26
|
+
"0x1809f186D680f239420B56948C58F8DbbCdf1E18";
|
|
27
|
+
export const SWAP_COLLATERAL_ADAPTER =
|
|
28
|
+
"0x872fBcb1B582e8Cd0D0DD4327fBFa0B4C2730995";
|
|
29
|
+
export const LISTING_ENGINE = "0xCA76Ebd8617a03126B6FB84F9b1c1A0fB71C2633";
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DEFAULT_INCENTIVES_CONTROLLER = exports.DEFAULT_A_TOKEN_IMPL_REV_1 = exports.DEFAULT_STABLE_DEBT_TOKEN_IMPL_REV_1 = exports.DEFAULT_VARIABLE_DEBT_TOKEN_IMPL_REV_1 = exports.COLLECTOR = exports.COLLECTOR_CONTROLLER = exports.EMISSION_MANAGER = exports.WETH_GATEWAY = exports.CHAIN_ID = exports.ACL_ADMIN = exports.ACL_MANAGER = exports.AAVE_PROTOCOL_DATA_PROVIDER = exports.ORACLE = exports.POOL_CONFIGURATOR = exports.POOL = exports.POOL_ADDRESSES_PROVIDER = void 0;
|
|
4
|
-
// AUTOGENERATED - DON'T MANUALLY CHANGE
|
|
5
|
-
exports.POOL_ADDRESSES_PROVIDER = "0x2f39d218133AFaB8F2B819B1066c7E434Ad94E9e";
|
|
6
|
-
exports.POOL = "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2";
|
|
7
|
-
exports.POOL_CONFIGURATOR = "0x64b761D848206f447Fe2dd461b0c635Ec39EbB27";
|
|
8
|
-
exports.ORACLE = "0x54586bE62E3c3580375aE3723C145253060Ca0C2";
|
|
9
|
-
exports.AAVE_PROTOCOL_DATA_PROVIDER = "0x7B4EB56E7CD4b454BA8ff71E4518426369a138a3";
|
|
10
|
-
exports.ACL_MANAGER = "0xc2aaCf6553D20d1e9d78E365AAba8032af9c85b0";
|
|
11
|
-
exports.ACL_ADMIN = "0xEE56e2B3D491590B5b31738cC34d5232F378a8D5";
|
|
12
|
-
exports.CHAIN_ID = 1;
|
|
13
|
-
exports.WETH_GATEWAY = "0x694d4cFdaeE639239df949b6E24Ff8576A00d1f2";
|
|
14
|
-
exports.EMISSION_MANAGER = "0xcAA448c8066f741C3137cEa9758dF3fB377CBF4E";
|
|
15
|
-
exports.COLLECTOR_CONTROLLER = "0x3d569673dAa0575c936c7c67c4E6AedA69CC630C";
|
|
16
|
-
exports.COLLECTOR = "0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c";
|
|
17
|
-
exports.DEFAULT_VARIABLE_DEBT_TOKEN_IMPL_REV_1 = "0x801934c604aBA0C8C46454c67F88A4a45a766a91";
|
|
18
|
-
exports.DEFAULT_STABLE_DEBT_TOKEN_IMPL_REV_1 = "0x2688a209086Ae56e7b3598Ec68A0Cba3B965CD06";
|
|
19
|
-
exports.DEFAULT_A_TOKEN_IMPL_REV_1 = "0xca21517bac12053E7fD6C326EDF89C5cc60d813f";
|
|
20
|
-
exports.DEFAULT_INCENTIVES_CONTROLLER = "0x8164Cc65827dcFe994AB23944CBC90e0aa80bFcb";
|