@bgd-labs/aave-address-book 1.1.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/.gitmodules +4 -0
- package/CHANGELOG.md +56 -0
- package/LICENSE +7 -0
- package/README.md +94 -0
- package/addressbook_logo.png +0 -0
- package/dist/AaveAddressBook.d.ts +17 -0
- package/dist/AaveAddressBook.js +20 -0
- package/dist/AaveV2Avalanche.d.ts +9 -0
- package/dist/AaveV2Avalanche.js +12 -0
- package/dist/AaveV2Ethereum.d.ts +9 -0
- package/dist/AaveV2Ethereum.js +12 -0
- package/dist/AaveV2EthereumAMM.d.ts +9 -0
- package/dist/AaveV2EthereumAMM.js +12 -0
- package/dist/AaveV2EthereumArc.d.ts +9 -0
- package/dist/AaveV2EthereumArc.js +12 -0
- package/dist/AaveV2Fuji.d.ts +9 -0
- package/dist/AaveV2Fuji.js +12 -0
- package/dist/AaveV2Mumbai.d.ts +9 -0
- package/dist/AaveV2Mumbai.js +12 -0
- package/dist/AaveV2Polygon.d.ts +9 -0
- package/dist/AaveV2Polygon.js +12 -0
- package/dist/AaveV3Arbitrum.d.ts +9 -0
- package/dist/AaveV3Arbitrum.js +12 -0
- package/dist/AaveV3Avalanche.d.ts +9 -0
- package/dist/AaveV3Avalanche.js +12 -0
- package/dist/AaveV3Fantom.d.ts +9 -0
- package/dist/AaveV3Fantom.js +12 -0
- package/dist/AaveV3FantomTestnet.d.ts +9 -0
- package/dist/AaveV3FantomTestnet.js +12 -0
- package/dist/AaveV3Fuji.d.ts +9 -0
- package/dist/AaveV3Fuji.js +12 -0
- package/dist/AaveV3Harmony.d.ts +9 -0
- package/dist/AaveV3Harmony.js +12 -0
- package/dist/AaveV3Mumbai.d.ts +9 -0
- package/dist/AaveV3Mumbai.js +12 -0
- package/dist/AaveV3Optimism.d.ts +9 -0
- package/dist/AaveV3Optimism.js +12 -0
- package/dist/AaveV3OptimismKovan.d.ts +9 -0
- package/dist/AaveV3OptimismKovan.js +12 -0
- package/dist/AaveV3Polygon.d.ts +9 -0
- package/dist/AaveV3Polygon.js +12 -0
- package/foundry.toml +8 -0
- package/lib/forge-std/.github/workflows/tests.yml +27 -0
- package/lib/forge-std/.gitmodules +3 -0
- package/lib/forge-std/LICENSE-APACHE +203 -0
- package/lib/forge-std/LICENSE-MIT +25 -0
- package/lib/forge-std/README.md +246 -0
- package/lib/forge-std/lib/ds-test/LICENSE +674 -0
- package/lib/forge-std/lib/ds-test/Makefile +14 -0
- package/lib/forge-std/lib/ds-test/default.nix +4 -0
- package/lib/forge-std/lib/ds-test/demo/demo.sol +222 -0
- package/lib/forge-std/lib/ds-test/src/test.sol +469 -0
- package/lib/forge-std/src/Script.sol +39 -0
- package/lib/forge-std/src/StdJson.sol +118 -0
- package/lib/forge-std/src/Test.sol +1134 -0
- package/lib/forge-std/src/Vm.sol +231 -0
- package/lib/forge-std/src/console.sol +1533 -0
- package/lib/forge-std/src/console2.sol +1538 -0
- package/lib/forge-std/src/test/Script.t.sol +12 -0
- package/lib/forge-std/src/test/StdAssertions.t.sol +591 -0
- package/lib/forge-std/src/test/StdCheats.t.sol +282 -0
- package/lib/forge-std/src/test/StdError.t.sol +124 -0
- package/lib/forge-std/src/test/StdMath.t.sol +200 -0
- package/lib/forge-std/src/test/StdStorage.t.sol +321 -0
- package/lib/forge-std/src/test/fixtures/broadcast.log.json +187 -0
- package/package.json +39 -0
- package/src/AaveAddressBook.sol +28 -0
- package/src/AaveAddressBookV2.sol +143 -0
- package/src/AaveAddressBookV2Testnet.sol +74 -0
- package/src/AaveAddressBookV3.sol +166 -0
- package/src/AaveAddressBookV3Testnet.sol +120 -0
- package/src/AaveGovernanceV2.sol +549 -0
- package/src/AaveV2.sol +931 -0
- package/src/AaveV2Avalanche.sol +35 -0
- package/src/AaveV2Ethereum.sol +36 -0
- package/src/AaveV2EthereumAMM.sol +36 -0
- package/src/AaveV2EthereumArc.sol +36 -0
- package/src/AaveV2Fuji.sol +35 -0
- package/src/AaveV2Mumbai.sol +35 -0
- package/src/AaveV2Polygon.sol +35 -0
- package/src/AaveV3.sol +2406 -0
- package/src/AaveV3Arbitrum.sol +34 -0
- package/src/AaveV3Avalanche.sol +34 -0
- package/src/AaveV3Fantom.sol +34 -0
- package/src/AaveV3FantomTestnet.sol +34 -0
- package/src/AaveV3Fuji.sol +34 -0
- package/src/AaveV3Harmony.sol +34 -0
- package/src/AaveV3HarmonyTestnet.sol +34 -0
- package/src/AaveV3Mumbai.sol +34 -0
- package/src/AaveV3Optimism.sol +34 -0
- package/src/AaveV3OptimismKovan.sol +34 -0
- package/src/AaveV3Polygon.sol +34 -0
- package/src/Common.sol +9 -0
- package/src/test/AaveV2Ethereum.t.sol +72 -0
- package/src/test/AaveV2Misfits.t.sol +33 -0
- package/src/test/AaveV3Avalanche.t.sol +65 -0
- package/src/ts/AaveAddressBook.ts +17 -0
- package/src/ts/AaveV2Avalanche.ts +11 -0
- package/src/ts/AaveV2Ethereum.ts +12 -0
- package/src/ts/AaveV2EthereumAMM.ts +12 -0
- package/src/ts/AaveV2EthereumArc.ts +12 -0
- package/src/ts/AaveV2Fuji.ts +11 -0
- package/src/ts/AaveV2Mumbai.ts +11 -0
- package/src/ts/AaveV2Polygon.ts +11 -0
- package/src/ts/AaveV3Arbitrum.ts +12 -0
- package/src/ts/AaveV3Avalanche.ts +12 -0
- package/src/ts/AaveV3Fantom.ts +12 -0
- package/src/ts/AaveV3FantomTestnet.ts +12 -0
- package/src/ts/AaveV3Fuji.ts +12 -0
- package/src/ts/AaveV3Harmony.ts +12 -0
- package/src/ts/AaveV3Mumbai.ts +12 -0
- package/src/ts/AaveV3Optimism.ts +12 -0
- package/src/ts/AaveV3OptimismKovan.ts +12 -0
- package/src/ts/AaveV3Polygon.ts +12 -0
- package/tsconfig.json +101 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// SPDX-License-Identifier: MIT
|
|
2
|
+
pragma solidity >=0.6.0;
|
|
3
|
+
|
|
4
|
+
import {IPoolAddressesProvider, IPool, IPoolConfigurator, IAaveOracle, IAaveProtocolDataProvider, IACLManager} from "./AaveV3.sol";
|
|
5
|
+
import {Token} from "./Common.sol";
|
|
6
|
+
|
|
7
|
+
library AaveV3Arbitrum {
|
|
8
|
+
IPoolAddressesProvider internal constant POOL_ADDRESSES_PROVIDER =
|
|
9
|
+
IPoolAddressesProvider(0xa97684ead0e402dC232d5A977953DF7ECBaB3CDb);
|
|
10
|
+
|
|
11
|
+
IPool internal constant POOL =
|
|
12
|
+
IPool(0x794a61358D6845594F94dc1DB02A252b5b4814aD);
|
|
13
|
+
|
|
14
|
+
IPoolConfigurator internal constant POOL_CONFIGURATOR =
|
|
15
|
+
IPoolConfigurator(0x8145eddDf43f50276641b55bd3AD95944510021E);
|
|
16
|
+
|
|
17
|
+
IAaveOracle internal constant ORACLE =
|
|
18
|
+
IAaveOracle(0xb56c2F0B653B2e0b10C9b928C8580Ac5Df02C7C7);
|
|
19
|
+
|
|
20
|
+
IAaveProtocolDataProvider internal constant AAVE_PROTOCOL_DATA_PROVIDER =
|
|
21
|
+
IAaveProtocolDataProvider(0x69FA688f1Dc47d4B5d8029D5a35FB7a548310654);
|
|
22
|
+
|
|
23
|
+
IACLManager internal constant ACL_MANAGER =
|
|
24
|
+
IACLManager(0xa72636CbcAa8F5FF95B2cc47F3CDEe83F3294a0B);
|
|
25
|
+
|
|
26
|
+
address internal constant ACL_ADMIN =
|
|
27
|
+
0xbbd9f90699c1FA0D7A65870D241DD1f1217c96Eb;
|
|
28
|
+
|
|
29
|
+
address internal constant COLLECTOR =
|
|
30
|
+
0x053D55f9B5AF8694c503EB288a1B7E552f590710;
|
|
31
|
+
|
|
32
|
+
address internal constant COLLECTOR_CONTROLLER =
|
|
33
|
+
0xC3301b30f4EcBfd59dE0d74e89690C1a70C6f21B;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// SPDX-License-Identifier: MIT
|
|
2
|
+
pragma solidity >=0.6.0;
|
|
3
|
+
|
|
4
|
+
import {IPoolAddressesProvider, IPool, IPoolConfigurator, IAaveOracle, IAaveProtocolDataProvider, IACLManager} from "./AaveV3.sol";
|
|
5
|
+
import {Token} from "./Common.sol";
|
|
6
|
+
|
|
7
|
+
library AaveV3Avalanche {
|
|
8
|
+
IPoolAddressesProvider internal constant POOL_ADDRESSES_PROVIDER =
|
|
9
|
+
IPoolAddressesProvider(0xa97684ead0e402dC232d5A977953DF7ECBaB3CDb);
|
|
10
|
+
|
|
11
|
+
IPool internal constant POOL =
|
|
12
|
+
IPool(0x794a61358D6845594F94dc1DB02A252b5b4814aD);
|
|
13
|
+
|
|
14
|
+
IPoolConfigurator internal constant POOL_CONFIGURATOR =
|
|
15
|
+
IPoolConfigurator(0x8145eddDf43f50276641b55bd3AD95944510021E);
|
|
16
|
+
|
|
17
|
+
IAaveOracle internal constant ORACLE =
|
|
18
|
+
IAaveOracle(0xEBd36016B3eD09D4693Ed4251c67Bd858c3c7C9C);
|
|
19
|
+
|
|
20
|
+
IAaveProtocolDataProvider internal constant AAVE_PROTOCOL_DATA_PROVIDER =
|
|
21
|
+
IAaveProtocolDataProvider(0x69FA688f1Dc47d4B5d8029D5a35FB7a548310654);
|
|
22
|
+
|
|
23
|
+
IACLManager internal constant ACL_MANAGER =
|
|
24
|
+
IACLManager(0xa72636CbcAa8F5FF95B2cc47F3CDEe83F3294a0B);
|
|
25
|
+
|
|
26
|
+
address internal constant ACL_ADMIN =
|
|
27
|
+
0xa35b76E4935449E33C56aB24b23fcd3246f13470;
|
|
28
|
+
|
|
29
|
+
address internal constant COLLECTOR =
|
|
30
|
+
0x5ba7fd868c40c16f7aDfAe6CF87121E13FC2F7a0;
|
|
31
|
+
|
|
32
|
+
address internal constant COLLECTOR_CONTROLLER =
|
|
33
|
+
0xaCbE7d574EF8dC39435577eb638167Aca74F79f0;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// SPDX-License-Identifier: MIT
|
|
2
|
+
pragma solidity >=0.6.0;
|
|
3
|
+
|
|
4
|
+
import {IPoolAddressesProvider, IPool, IPoolConfigurator, IAaveOracle, IAaveProtocolDataProvider, IACLManager} from "./AaveV3.sol";
|
|
5
|
+
import {Token} from "./Common.sol";
|
|
6
|
+
|
|
7
|
+
library AaveV3Fantom {
|
|
8
|
+
IPoolAddressesProvider internal constant POOL_ADDRESSES_PROVIDER =
|
|
9
|
+
IPoolAddressesProvider(0xa97684ead0e402dC232d5A977953DF7ECBaB3CDb);
|
|
10
|
+
|
|
11
|
+
IPool internal constant POOL =
|
|
12
|
+
IPool(0x794a61358D6845594F94dc1DB02A252b5b4814aD);
|
|
13
|
+
|
|
14
|
+
IPoolConfigurator internal constant POOL_CONFIGURATOR =
|
|
15
|
+
IPoolConfigurator(0x8145eddDf43f50276641b55bd3AD95944510021E);
|
|
16
|
+
|
|
17
|
+
IAaveOracle internal constant ORACLE =
|
|
18
|
+
IAaveOracle(0xfd6f3c1845604C8AE6c6E402ad17fb9885160754);
|
|
19
|
+
|
|
20
|
+
IAaveProtocolDataProvider internal constant AAVE_PROTOCOL_DATA_PROVIDER =
|
|
21
|
+
IAaveProtocolDataProvider(0x69FA688f1Dc47d4B5d8029D5a35FB7a548310654);
|
|
22
|
+
|
|
23
|
+
IACLManager internal constant ACL_MANAGER =
|
|
24
|
+
IACLManager(0xa72636CbcAa8F5FF95B2cc47F3CDEe83F3294a0B);
|
|
25
|
+
|
|
26
|
+
address internal constant ACL_ADMIN =
|
|
27
|
+
0x39CB97b105173b56b5a2b4b33AD25d6a50E6c949;
|
|
28
|
+
|
|
29
|
+
address internal constant COLLECTOR =
|
|
30
|
+
0xBe85413851D195fC6341619cD68BfDc26a25b928;
|
|
31
|
+
|
|
32
|
+
address internal constant COLLECTOR_CONTROLLER =
|
|
33
|
+
0xc0F0cFBbd0382BcE3B93234E4BFb31b2aaBE36aD;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// SPDX-License-Identifier: MIT
|
|
2
|
+
pragma solidity >=0.6.0;
|
|
3
|
+
|
|
4
|
+
import {IPoolAddressesProvider, IPool, IPoolConfigurator, IAaveOracle, IAaveProtocolDataProvider, IACLManager} from "./AaveV3.sol";
|
|
5
|
+
import {Token} from "./Common.sol";
|
|
6
|
+
|
|
7
|
+
library AaveV3FantomTestnet {
|
|
8
|
+
IPoolAddressesProvider internal constant POOL_ADDRESSES_PROVIDER =
|
|
9
|
+
IPoolAddressesProvider(0xE339D30cBa24C70dCCb82B234589E3C83249e658);
|
|
10
|
+
|
|
11
|
+
IPool internal constant POOL =
|
|
12
|
+
IPool(0x771A45a19cE333a19356694C5fc80c76fe9bc741);
|
|
13
|
+
|
|
14
|
+
IPoolConfigurator internal constant POOL_CONFIGURATOR =
|
|
15
|
+
IPoolConfigurator(0x59B84a6C943dD655D9E3B4024fC6AdC0E3f4Ff60);
|
|
16
|
+
|
|
17
|
+
IAaveOracle internal constant ORACLE =
|
|
18
|
+
IAaveOracle(0xA840C768f7143495790eC8dc2D5f32B71B6Dc113);
|
|
19
|
+
|
|
20
|
+
IAaveProtocolDataProvider internal constant AAVE_PROTOCOL_DATA_PROVIDER =
|
|
21
|
+
IAaveProtocolDataProvider(0xCbAcff915f2d10727844ab0f2A4D9768954981e4);
|
|
22
|
+
|
|
23
|
+
IACLManager internal constant ACL_MANAGER =
|
|
24
|
+
IACLManager(0x94f154aba287b3024fb32386463FC52d488bb09B);
|
|
25
|
+
|
|
26
|
+
address internal constant ACL_ADMIN =
|
|
27
|
+
0x77c45699A715A64A7a7796d5CEe884cf617D5254;
|
|
28
|
+
|
|
29
|
+
address internal constant COLLECTOR =
|
|
30
|
+
0xF49dA7a22463D140f9f8dc7C91468C8721215496;
|
|
31
|
+
|
|
32
|
+
address internal constant COLLECTOR_CONTROLLER =
|
|
33
|
+
0x7aaB2c2CC186131851d6B1876D16eDc849846042;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// SPDX-License-Identifier: MIT
|
|
2
|
+
pragma solidity >=0.6.0;
|
|
3
|
+
|
|
4
|
+
import {IPoolAddressesProvider, IPool, IPoolConfigurator, IAaveOracle, IAaveProtocolDataProvider, IACLManager} from "./AaveV3.sol";
|
|
5
|
+
import {Token} from "./Common.sol";
|
|
6
|
+
|
|
7
|
+
library AaveV3Fuji {
|
|
8
|
+
IPoolAddressesProvider internal constant POOL_ADDRESSES_PROVIDER =
|
|
9
|
+
IPoolAddressesProvider(0x1775ECC8362dB6CaB0c7A9C0957cF656A5276c29);
|
|
10
|
+
|
|
11
|
+
IPool internal constant POOL =
|
|
12
|
+
IPool(0xb47673b7a73D78743AFF1487AF69dBB5763F00cA);
|
|
13
|
+
|
|
14
|
+
IPoolConfigurator internal constant POOL_CONFIGURATOR =
|
|
15
|
+
IPoolConfigurator(0x01743372F0F0318AaDF690f960A4c6c4eab58782);
|
|
16
|
+
|
|
17
|
+
IAaveOracle internal constant ORACLE =
|
|
18
|
+
IAaveOracle(0xAc6D153BF94aFBdC296e72163735B0f94581F736);
|
|
19
|
+
|
|
20
|
+
IAaveProtocolDataProvider internal constant AAVE_PROTOCOL_DATA_PROVIDER =
|
|
21
|
+
IAaveProtocolDataProvider(0x8e0988b28f9CdDe0134A206dfF94111578498C63);
|
|
22
|
+
|
|
23
|
+
IACLManager internal constant ACL_MANAGER =
|
|
24
|
+
IACLManager(0xAa6Fd640173bcA58e5a5CC373531F9038eF3F9e1);
|
|
25
|
+
|
|
26
|
+
address internal constant ACL_ADMIN =
|
|
27
|
+
0x77c45699A715A64A7a7796d5CEe884cf617D5254;
|
|
28
|
+
|
|
29
|
+
address internal constant COLLECTOR =
|
|
30
|
+
0xBaaCc99123133851Ba2D6d34952aa08CBDf5A4E4;
|
|
31
|
+
|
|
32
|
+
address internal constant COLLECTOR_CONTROLLER =
|
|
33
|
+
0xFCadBDefd30E11258559Ba239C8a5A8A8D28CB00;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// SPDX-License-Identifier: MIT
|
|
2
|
+
pragma solidity >=0.6.0;
|
|
3
|
+
|
|
4
|
+
import {IPoolAddressesProvider, IPool, IPoolConfigurator, IAaveOracle, IAaveProtocolDataProvider, IACLManager} from "./AaveV3.sol";
|
|
5
|
+
import {Token} from "./Common.sol";
|
|
6
|
+
|
|
7
|
+
library AaveV3Harmony {
|
|
8
|
+
IPoolAddressesProvider internal constant POOL_ADDRESSES_PROVIDER =
|
|
9
|
+
IPoolAddressesProvider(0xa97684ead0e402dC232d5A977953DF7ECBaB3CDb);
|
|
10
|
+
|
|
11
|
+
IPool internal constant POOL =
|
|
12
|
+
IPool(0x794a61358D6845594F94dc1DB02A252b5b4814aD);
|
|
13
|
+
|
|
14
|
+
IPoolConfigurator internal constant POOL_CONFIGURATOR =
|
|
15
|
+
IPoolConfigurator(0x8145eddDf43f50276641b55bd3AD95944510021E);
|
|
16
|
+
|
|
17
|
+
IAaveOracle internal constant ORACLE =
|
|
18
|
+
IAaveOracle(0x3C90887Ede8D65ccb2777A5d577beAb2548280AD);
|
|
19
|
+
|
|
20
|
+
IAaveProtocolDataProvider internal constant AAVE_PROTOCOL_DATA_PROVIDER =
|
|
21
|
+
IAaveProtocolDataProvider(0x69FA688f1Dc47d4B5d8029D5a35FB7a548310654);
|
|
22
|
+
|
|
23
|
+
IACLManager internal constant ACL_MANAGER =
|
|
24
|
+
IACLManager(0xa72636CbcAa8F5FF95B2cc47F3CDEe83F3294a0B);
|
|
25
|
+
|
|
26
|
+
address internal constant ACL_ADMIN =
|
|
27
|
+
0xb2f0C5f37f4beD2cB51C44653cD5D84866BDcd2D;
|
|
28
|
+
|
|
29
|
+
address internal constant COLLECTOR =
|
|
30
|
+
0x8A020d92D6B119978582BE4d3EdFdC9F7b28BF31;
|
|
31
|
+
|
|
32
|
+
address internal constant COLLECTOR_CONTROLLER =
|
|
33
|
+
0xeaC16519923774Fd7723d3D5E442a1e2E46BA962;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// SPDX-License-Identifier: MIT
|
|
2
|
+
pragma solidity >=0.6.0;
|
|
3
|
+
|
|
4
|
+
import {IPoolAddressesProvider, IPool, IPoolConfigurator, IAaveOracle, IAaveProtocolDataProvider, IACLManager} from "./AaveV3.sol";
|
|
5
|
+
import {Token} from "./Common.sol";
|
|
6
|
+
|
|
7
|
+
library AaveV3HarmonyTestnet {
|
|
8
|
+
IPoolAddressesProvider internal constant POOL_ADDRESSES_PROVIDER =
|
|
9
|
+
IPoolAddressesProvider(0xd19443202328A66875a51560c28276868B8C61C2);
|
|
10
|
+
|
|
11
|
+
IPool internal constant POOL =
|
|
12
|
+
IPool(0x85C1F3f1bB439180f7Bfda9DFD61De82e10bD554);
|
|
13
|
+
|
|
14
|
+
IPoolConfigurator internal constant POOL_CONFIGURATOR =
|
|
15
|
+
IPoolConfigurator(0xdb903B5a28260E87cF1d8B56740a90Dba1c8fe15);
|
|
16
|
+
|
|
17
|
+
IAaveOracle internal constant ORACLE =
|
|
18
|
+
IAaveOracle(0x29Ff3c19C6853A0b6544b3CC241c360f422aBaD1);
|
|
19
|
+
|
|
20
|
+
IAaveProtocolDataProvider internal constant AAVE_PROTOCOL_DATA_PROVIDER =
|
|
21
|
+
IAaveProtocolDataProvider(0xFc7215C9498Fc12b22Bc0ed335871Db4315f03d3);
|
|
22
|
+
|
|
23
|
+
IACLManager internal constant ACL_MANAGER =
|
|
24
|
+
IACLManager(0x1758d4e6f68166C4B2d9d0F049F33dEB399Daa1F);
|
|
25
|
+
|
|
26
|
+
address internal constant ACL_ADMIN =
|
|
27
|
+
0x77c45699A715A64A7a7796d5CEe884cf617D5254;
|
|
28
|
+
|
|
29
|
+
address internal constant COLLECTOR =
|
|
30
|
+
0x9aa7fEc87CA69695Dd1f879567CcF49F3ba417E2;
|
|
31
|
+
|
|
32
|
+
address internal constant COLLECTOR_CONTROLLER =
|
|
33
|
+
0x85E44420b6137bbc75a85CAB5c9A3371af976FdE;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// SPDX-License-Identifier: MIT
|
|
2
|
+
pragma solidity >=0.6.0;
|
|
3
|
+
|
|
4
|
+
import {IPoolAddressesProvider, IPool, IPoolConfigurator, IAaveOracle, IAaveProtocolDataProvider, IACLManager} from "./AaveV3.sol";
|
|
5
|
+
import {Token} from "./Common.sol";
|
|
6
|
+
|
|
7
|
+
library AaveV3Mumbai {
|
|
8
|
+
IPoolAddressesProvider internal constant POOL_ADDRESSES_PROVIDER =
|
|
9
|
+
IPoolAddressesProvider(0x5343b5bA672Ae99d627A1C87866b8E53F47Db2E6);
|
|
10
|
+
|
|
11
|
+
IPool internal constant POOL =
|
|
12
|
+
IPool(0x6C9fB0D5bD9429eb9Cd96B85B81d872281771E6B);
|
|
13
|
+
|
|
14
|
+
IPoolConfigurator internal constant POOL_CONFIGURATOR =
|
|
15
|
+
IPoolConfigurator(0x7b47e727eC539CB74A744ae5259ef26743294fca);
|
|
16
|
+
|
|
17
|
+
IAaveOracle internal constant ORACLE =
|
|
18
|
+
IAaveOracle(0x520D14AE678b41067f029Ad770E2870F85E76588);
|
|
19
|
+
|
|
20
|
+
IAaveProtocolDataProvider internal constant AAVE_PROTOCOL_DATA_PROVIDER =
|
|
21
|
+
IAaveProtocolDataProvider(0x8f57153F18b7273f9A814b93b31Cb3f9b035e7C2);
|
|
22
|
+
|
|
23
|
+
IACLManager internal constant ACL_MANAGER =
|
|
24
|
+
IACLManager(0x6437b6E14D7ECa1Fa9854df92eB067253D5f683A);
|
|
25
|
+
|
|
26
|
+
address internal constant ACL_ADMIN =
|
|
27
|
+
0x77c45699A715A64A7a7796d5CEe884cf617D5254;
|
|
28
|
+
|
|
29
|
+
address internal constant COLLECTOR =
|
|
30
|
+
0x3B6E7a4750e478D7f7d6A5d464099A02ef164bCC;
|
|
31
|
+
|
|
32
|
+
address internal constant COLLECTOR_CONTROLLER =
|
|
33
|
+
0x810d913542D399F3680F0E806DEDf6EACf0e3383;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// SPDX-License-Identifier: MIT
|
|
2
|
+
pragma solidity >=0.6.0;
|
|
3
|
+
|
|
4
|
+
import {IPoolAddressesProvider, IPool, IPoolConfigurator, IAaveOracle, IAaveProtocolDataProvider, IACLManager} from "./AaveV3.sol";
|
|
5
|
+
import {Token} from "./Common.sol";
|
|
6
|
+
|
|
7
|
+
library AaveV3Optimism {
|
|
8
|
+
IPoolAddressesProvider internal constant POOL_ADDRESSES_PROVIDER =
|
|
9
|
+
IPoolAddressesProvider(0xa97684ead0e402dC232d5A977953DF7ECBaB3CDb);
|
|
10
|
+
|
|
11
|
+
IPool internal constant POOL =
|
|
12
|
+
IPool(0x794a61358D6845594F94dc1DB02A252b5b4814aD);
|
|
13
|
+
|
|
14
|
+
IPoolConfigurator internal constant POOL_CONFIGURATOR =
|
|
15
|
+
IPoolConfigurator(0x8145eddDf43f50276641b55bd3AD95944510021E);
|
|
16
|
+
|
|
17
|
+
IAaveOracle internal constant ORACLE =
|
|
18
|
+
IAaveOracle(0xD81eb3728a631871a7eBBaD631b5f424909f0c77);
|
|
19
|
+
|
|
20
|
+
IAaveProtocolDataProvider internal constant AAVE_PROTOCOL_DATA_PROVIDER =
|
|
21
|
+
IAaveProtocolDataProvider(0x69FA688f1Dc47d4B5d8029D5a35FB7a548310654);
|
|
22
|
+
|
|
23
|
+
IACLManager internal constant ACL_MANAGER =
|
|
24
|
+
IACLManager(0xa72636CbcAa8F5FF95B2cc47F3CDEe83F3294a0B);
|
|
25
|
+
|
|
26
|
+
address internal constant ACL_ADMIN =
|
|
27
|
+
0xE50c8C619d05ff98b22Adf991F17602C774F785c;
|
|
28
|
+
|
|
29
|
+
address internal constant COLLECTOR =
|
|
30
|
+
0xB2289E329D2F85F1eD31Adbb30eA345278F21bcf;
|
|
31
|
+
|
|
32
|
+
address internal constant COLLECTOR_CONTROLLER =
|
|
33
|
+
0xA77E4A084d7d4f064E326C0F6c0aCefd47A5Cb21;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// SPDX-License-Identifier: MIT
|
|
2
|
+
pragma solidity >=0.6.0;
|
|
3
|
+
|
|
4
|
+
import {IPoolAddressesProvider, IPool, IPoolConfigurator, IAaveOracle, IAaveProtocolDataProvider, IACLManager} from "./AaveV3.sol";
|
|
5
|
+
import {Token} from "./Common.sol";
|
|
6
|
+
|
|
7
|
+
library AaveV3OptimismKovan {
|
|
8
|
+
IPoolAddressesProvider internal constant POOL_ADDRESSES_PROVIDER =
|
|
9
|
+
IPoolAddressesProvider(0xD15d36975A0200D11B8a8964F4F267982D2a1cFe);
|
|
10
|
+
|
|
11
|
+
IPool internal constant POOL =
|
|
12
|
+
IPool(0x139d8F557f70D1903787e929D7C42165c4667229);
|
|
13
|
+
|
|
14
|
+
IPoolConfigurator internal constant POOL_CONFIGURATOR =
|
|
15
|
+
IPoolConfigurator(0x12F6E19b968e34fEE34763469c7EAf902Af6914B);
|
|
16
|
+
|
|
17
|
+
IAaveOracle internal constant ORACLE =
|
|
18
|
+
IAaveOracle(0xce87225e5A0ABFe6241C6A60158840d509a84B47);
|
|
19
|
+
|
|
20
|
+
IAaveProtocolDataProvider internal constant AAVE_PROTOCOL_DATA_PROVIDER =
|
|
21
|
+
IAaveProtocolDataProvider(0x2f733c0389bfF96a3f930Deb2f6DB1d767Cd3215);
|
|
22
|
+
|
|
23
|
+
IACLManager internal constant ACL_MANAGER =
|
|
24
|
+
IACLManager(0x552626e2E6e35566d53CE0C5Ad97d72E95bC3fc3);
|
|
25
|
+
|
|
26
|
+
address internal constant ACL_ADMIN =
|
|
27
|
+
0x77c45699A715A64A7a7796d5CEe884cf617D5254;
|
|
28
|
+
|
|
29
|
+
address internal constant COLLECTOR =
|
|
30
|
+
0x733DC8C72B189791B28Dc8c6Fb09D9201b01eF2f;
|
|
31
|
+
|
|
32
|
+
address internal constant COLLECTOR_CONTROLLER =
|
|
33
|
+
0x9b791f6A34B2C87c360902F050dA5e0075b7A567;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// SPDX-License-Identifier: MIT
|
|
2
|
+
pragma solidity >=0.6.0;
|
|
3
|
+
|
|
4
|
+
import {IPoolAddressesProvider, IPool, IPoolConfigurator, IAaveOracle, IAaveProtocolDataProvider, IACLManager} from "./AaveV3.sol";
|
|
5
|
+
import {Token} from "./Common.sol";
|
|
6
|
+
|
|
7
|
+
library AaveV3Polygon {
|
|
8
|
+
IPoolAddressesProvider internal constant POOL_ADDRESSES_PROVIDER =
|
|
9
|
+
IPoolAddressesProvider(0xa97684ead0e402dC232d5A977953DF7ECBaB3CDb);
|
|
10
|
+
|
|
11
|
+
IPool internal constant POOL =
|
|
12
|
+
IPool(0x794a61358D6845594F94dc1DB02A252b5b4814aD);
|
|
13
|
+
|
|
14
|
+
IPoolConfigurator internal constant POOL_CONFIGURATOR =
|
|
15
|
+
IPoolConfigurator(0x8145eddDf43f50276641b55bd3AD95944510021E);
|
|
16
|
+
|
|
17
|
+
IAaveOracle internal constant ORACLE =
|
|
18
|
+
IAaveOracle(0xb023e699F5a33916Ea823A16485e259257cA8Bd1);
|
|
19
|
+
|
|
20
|
+
IAaveProtocolDataProvider internal constant AAVE_PROTOCOL_DATA_PROVIDER =
|
|
21
|
+
IAaveProtocolDataProvider(0x69FA688f1Dc47d4B5d8029D5a35FB7a548310654);
|
|
22
|
+
|
|
23
|
+
IACLManager internal constant ACL_MANAGER =
|
|
24
|
+
IACLManager(0xa72636CbcAa8F5FF95B2cc47F3CDEe83F3294a0B);
|
|
25
|
+
|
|
26
|
+
address internal constant ACL_ADMIN =
|
|
27
|
+
0xdc9A35B16DB4e126cFeDC41322b3a36454B1F772;
|
|
28
|
+
|
|
29
|
+
address internal constant COLLECTOR =
|
|
30
|
+
0xe8599F3cc5D38a9aD6F3684cd5CEa72f10Dbc383;
|
|
31
|
+
|
|
32
|
+
address internal constant COLLECTOR_CONTROLLER =
|
|
33
|
+
0x73D435AFc15e35A9aC63B2a81B5AA54f974eadFe;
|
|
34
|
+
}
|
package/src/Common.sol
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
// SPDX-License-Identifier: MIT
|
|
2
|
+
pragma solidity >=0.6.0;
|
|
3
|
+
|
|
4
|
+
import "forge-std/Test.sol";
|
|
5
|
+
import { AaveV2Ethereum } from "../AaveAddressBook.sol";
|
|
6
|
+
|
|
7
|
+
contract AaveAddressBookTest is Test {
|
|
8
|
+
function setUp() public {}
|
|
9
|
+
|
|
10
|
+
function testPoolAddressProviderIsCorrect() public {
|
|
11
|
+
assertEq(
|
|
12
|
+
address(AaveV2Ethereum.POOL_ADDRESSES_PROVIDER),
|
|
13
|
+
address(0xB53C1a33016B2DC2fF3653530bfF1848a515c8c5)
|
|
14
|
+
);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
function testPoolAddressIsCorrect() public {
|
|
18
|
+
assertEq(
|
|
19
|
+
address(AaveV2Ethereum.POOL),
|
|
20
|
+
address(0x7d2768dE32b0b80b7a3454c06BdAc94A69DDc7A9)
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
function testPoolConfiguratorIsCorrect() public {
|
|
25
|
+
assertEq(
|
|
26
|
+
address(AaveV2Ethereum.POOL_CONFIGURATOR),
|
|
27
|
+
address(0x311Bb771e4F8952E6Da169b425E7e92d6Ac45756)
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
function testOracleIsCorrect() public {
|
|
32
|
+
assertEq(
|
|
33
|
+
address(AaveV2Ethereum.ORACLE),
|
|
34
|
+
address(0xA50ba011c48153De246E5192C8f9258A2ba79Ca9)
|
|
35
|
+
);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
function testAaveProtocolDataProviderIsCorrect() public {
|
|
39
|
+
assertEq(
|
|
40
|
+
address(AaveV2Ethereum.AAVE_PROTOCOL_DATA_PROVIDER),
|
|
41
|
+
address(0x057835Ad21a177dbdd3090bB1CAE03EaCF78Fc6d)
|
|
42
|
+
);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
function testPoolAdminIsCorrect() public {
|
|
46
|
+
assertEq(
|
|
47
|
+
AaveV2Ethereum.POOL_ADMIN,
|
|
48
|
+
address(0xEE56e2B3D491590B5b31738cC34d5232F378a8D5)
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
function testEmergencyAdminIsCorrect() public {
|
|
53
|
+
assertEq(
|
|
54
|
+
AaveV2Ethereum.EMERGENCY_ADMIN,
|
|
55
|
+
address(0xCA76Ebd8617a03126B6FB84F9b1c1A0fB71C2633)
|
|
56
|
+
);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
function testCollectorIsCorrect() public {
|
|
60
|
+
assertEq(
|
|
61
|
+
AaveV2Ethereum.COLLECTOR,
|
|
62
|
+
address(0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c)
|
|
63
|
+
);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
function testCollectorControllerIsCorrect() public {
|
|
67
|
+
assertEq(
|
|
68
|
+
AaveV2Ethereum.COLLECTOR_CONTROLLER,
|
|
69
|
+
address(0x3d569673dAa0575c936c7c67c4E6AedA69CC630C)
|
|
70
|
+
);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
// SPDX-License-Identifier: MIT
|
|
2
|
+
pragma solidity >=0.6.0;
|
|
3
|
+
|
|
4
|
+
import "forge-std/Test.sol";
|
|
5
|
+
import { AaveV2Avalanche, AaveV2Polygon, AaveV2EthereumArc } from "../AaveAddressBook.sol";
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @dev This test contains regression tests for markets that are slightly different then the default.
|
|
9
|
+
*/
|
|
10
|
+
contract AaveAddressMisfitsTest is Test {
|
|
11
|
+
function setUp() public {}
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* @dev Only the v2 ethereum market has the new treasury version.
|
|
15
|
+
* To maintain interface compatibility the address-book contains 0 addresses for networks where it doesn't yet exist.
|
|
16
|
+
*/
|
|
17
|
+
function testCollectorControllerIs0Address() public {
|
|
18
|
+
assertEq(address(AaveV2Avalanche.COLLECTOR_CONTROLLER), address(0));
|
|
19
|
+
assertEq(address(AaveV2Polygon.COLLECTOR_CONTROLLER), address(0));
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* @dev This test tests against a bug that got visible after adding arc market.
|
|
24
|
+
* The arc is the only market where owner != POOL_ADMIN right now.
|
|
25
|
+
* So this test ensures we actually use the pool admin.
|
|
26
|
+
*/
|
|
27
|
+
function testArcPoolAdminIsCorrect() public {
|
|
28
|
+
assertEq(
|
|
29
|
+
address(AaveV2EthereumArc.POOL_ADMIN),
|
|
30
|
+
address(0xAce1d11d836cb3F51Ef658FD4D353fFb3c301218)
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
// SPDX-License-Identifier: MIT
|
|
2
|
+
pragma solidity >=0.6.0;
|
|
3
|
+
|
|
4
|
+
import "forge-std/Test.sol";
|
|
5
|
+
import { AaveV3Avalanche } from "../AaveAddressBook.sol";
|
|
6
|
+
|
|
7
|
+
contract AaveAddressBookTest is Test {
|
|
8
|
+
function setUp() public {}
|
|
9
|
+
|
|
10
|
+
function testPoolAddressProviderIsCorrect() public {
|
|
11
|
+
assertEq(
|
|
12
|
+
address(AaveV3Avalanche.POOL_ADDRESSES_PROVIDER),
|
|
13
|
+
address(0xa97684ead0e402dC232d5A977953DF7ECBaB3CDb)
|
|
14
|
+
);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
function testPoolAddressIsCorrect() public {
|
|
18
|
+
assertEq(
|
|
19
|
+
address(AaveV3Avalanche.POOL),
|
|
20
|
+
address(0x794a61358D6845594F94dc1DB02A252b5b4814aD)
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
function testPoolConfiguratorIsCorrect() public {
|
|
25
|
+
assertEq(
|
|
26
|
+
address(AaveV3Avalanche.POOL_CONFIGURATOR),
|
|
27
|
+
address(0x8145eddDf43f50276641b55bd3AD95944510021E)
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
function testOracleIsCorrect() public {
|
|
32
|
+
assertEq(
|
|
33
|
+
address(AaveV3Avalanche.ORACLE),
|
|
34
|
+
address(0xEBd36016B3eD09D4693Ed4251c67Bd858c3c7C9C)
|
|
35
|
+
);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
function testACLManagerIsCorrect() public {
|
|
39
|
+
assertEq(
|
|
40
|
+
address(AaveV3Avalanche.ACL_MANAGER),
|
|
41
|
+
address(0xa72636CbcAa8F5FF95B2cc47F3CDEe83F3294a0B)
|
|
42
|
+
);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
function testACLAdminIsCorrect() public {
|
|
46
|
+
assertEq(
|
|
47
|
+
AaveV3Avalanche.ACL_ADMIN,
|
|
48
|
+
address(0xa35b76E4935449E33C56aB24b23fcd3246f13470)
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
function testCollectorIsCorrect() public {
|
|
53
|
+
assertEq(
|
|
54
|
+
AaveV3Avalanche.COLLECTOR,
|
|
55
|
+
address(0x5ba7fd868c40c16f7aDfAe6CF87121E13FC2F7a0)
|
|
56
|
+
);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
function testCollectorControllerIsCorrect() public {
|
|
60
|
+
assertEq(
|
|
61
|
+
AaveV3Avalanche.COLLECTOR_CONTROLLER,
|
|
62
|
+
address(0xaCbE7d574EF8dC39435577eb638167Aca74F79f0)
|
|
63
|
+
);
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export * as AaveV2Ethereum from "./AaveV2Ethereum";
|
|
2
|
+
export * as AaveV2EthereumAMM from "./AaveV2EthereumAMM";
|
|
3
|
+
export * as AaveV2EthereumArc from "./AaveV2EthereumArc";
|
|
4
|
+
export * as AaveV2Mumbai from "./AaveV2Mumbai";
|
|
5
|
+
export * as AaveV3Mumbai from "./AaveV3Mumbai";
|
|
6
|
+
export * as AaveV2Polygon from "./AaveV2Polygon";
|
|
7
|
+
export * as AaveV3Polygon from "./AaveV3Polygon";
|
|
8
|
+
export * as AaveV2Fuji from "./AaveV2Fuji";
|
|
9
|
+
export * as AaveV3Fuji from "./AaveV3Fuji";
|
|
10
|
+
export * as AaveV2Avalanche from "./AaveV2Avalanche";
|
|
11
|
+
export * as AaveV3Avalanche from "./AaveV3Avalanche";
|
|
12
|
+
export * as AaveV3Arbitrum from "./AaveV3Arbitrum";
|
|
13
|
+
export * as AaveV3FantomTestnet from "./AaveV3FantomTestnet";
|
|
14
|
+
export * as AaveV3Fantom from "./AaveV3Fantom";
|
|
15
|
+
export * as AaveV3Harmony from "./AaveV3Harmony";
|
|
16
|
+
export * as AaveV3OptimismKovan from "./AaveV3OptimismKovan";
|
|
17
|
+
export * as AaveV3Optimism from "./AaveV3Optimism";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export const POOL_ADDRESSES_PROVIDER =
|
|
2
|
+
"0xb6A86025F0FE1862B372cb0ca18CE3EDe02A318f";
|
|
3
|
+
export const POOL = "0x4F01AeD16D97E3aB5ab2B501154DC9bb0F1A5A2C";
|
|
4
|
+
export const POOL_CONFIGURATOR = "0x230B618aD4C475393A7239aE03630042281BD86e";
|
|
5
|
+
export const ORACLE = "0xdC336Cd4769f4cC7E9d726DA53e6d3fC710cEB89";
|
|
6
|
+
export const AAVE_PROTOCOL_DATA_PROVIDER =
|
|
7
|
+
"0x65285E9dfab318f57051ab2b139ccCf232945451";
|
|
8
|
+
export const POOL_ADMIN = "0x01244E7842254e3FD229CD263472076B1439D1Cd";
|
|
9
|
+
export const EMERGENCY_ADMIN = "0x01244E7842254e3FD229CD263472076B1439D1Cd";
|
|
10
|
+
export const COLLECTOR = "0x467b92aF281d14cB6809913AD016a607b5ba8A36";
|
|
11
|
+
export const COLLECTOR_CONTROLLER = "address(0)";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export const POOL_ADDRESSES_PROVIDER =
|
|
2
|
+
"0xB53C1a33016B2DC2fF3653530bfF1848a515c8c5";
|
|
3
|
+
export const POOL = "0x7d2768dE32b0b80b7a3454c06BdAc94A69DDc7A9";
|
|
4
|
+
export const POOL_CONFIGURATOR = "0x311Bb771e4F8952E6Da169b425E7e92d6Ac45756";
|
|
5
|
+
export const ORACLE = "0xA50ba011c48153De246E5192C8f9258A2ba79Ca9";
|
|
6
|
+
export const AAVE_PROTOCOL_DATA_PROVIDER =
|
|
7
|
+
"0x057835Ad21a177dbdd3090bB1CAE03EaCF78Fc6d";
|
|
8
|
+
export const POOL_ADMIN = "0xEE56e2B3D491590B5b31738cC34d5232F378a8D5";
|
|
9
|
+
export const EMERGENCY_ADMIN = "0xCA76Ebd8617a03126B6FB84F9b1c1A0fB71C2633";
|
|
10
|
+
export const COLLECTOR = "0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c";
|
|
11
|
+
export const COLLECTOR_CONTROLLER =
|
|
12
|
+
"0x3d569673dAa0575c936c7c67c4E6AedA69CC630C";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export const POOL_ADDRESSES_PROVIDER =
|
|
2
|
+
"0xAcc030EF66f9dFEAE9CbB0cd1B25654b82cFA8d5";
|
|
3
|
+
export const POOL = "0x7937D4799803FbBe595ed57278Bc4cA21f3bFfCB";
|
|
4
|
+
export const POOL_CONFIGURATOR = "0x23A875eDe3F1030138701683e42E9b16A7F87768";
|
|
5
|
+
export const ORACLE = "0xA50ba011c48153De246E5192C8f9258A2ba79Ca9";
|
|
6
|
+
export const AAVE_PROTOCOL_DATA_PROVIDER =
|
|
7
|
+
"0x0000000000000000000000000000000000000000";
|
|
8
|
+
export const POOL_ADMIN = "0xEE56e2B3D491590B5b31738cC34d5232F378a8D5";
|
|
9
|
+
export const EMERGENCY_ADMIN = "0xB9062896ec3A615a4e4444DF183F0531a77218AE";
|
|
10
|
+
export const COLLECTOR = "0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c";
|
|
11
|
+
export const COLLECTOR_CONTROLLER =
|
|
12
|
+
"0x3d569673dAa0575c936c7c67c4E6AedA69CC630C";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export const POOL_ADDRESSES_PROVIDER =
|
|
2
|
+
"0x6FdfafB66d39cD72CFE7984D3Bbcc76632faAb00";
|
|
3
|
+
export const POOL = "0x37D7306019a38Af123e4b245Eb6C28AF552e0bB0";
|
|
4
|
+
export const POOL_CONFIGURATOR = "0x4e1c7865e7BE78A7748724Fa0409e88dc14E67aA";
|
|
5
|
+
export const ORACLE = "0xB8a7bc0d13B1f5460513040a97F404b4fea7D2f3";
|
|
6
|
+
export const AAVE_PROTOCOL_DATA_PROVIDER =
|
|
7
|
+
"0x71B53fC437cCD988b1b89B1D4605c3c3d0C810ea";
|
|
8
|
+
export const POOL_ADMIN = "0xAce1d11d836cb3F51Ef658FD4D353fFb3c301218";
|
|
9
|
+
export const EMERGENCY_ADMIN = "0x33B09130b035d6D7e57d76fEa0873d9545FA7557";
|
|
10
|
+
export const COLLECTOR = "0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c";
|
|
11
|
+
export const COLLECTOR_CONTROLLER =
|
|
12
|
+
"0x3d569673dAa0575c936c7c67c4E6AedA69CC630C";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export const POOL_ADDRESSES_PROVIDER =
|
|
2
|
+
"0x7fdC1FdF79BE3309bf82f4abdAD9f111A6590C0f";
|
|
3
|
+
export const POOL = "0x76cc67FF2CC77821A70ED14321111Ce381C2594D";
|
|
4
|
+
export const POOL_CONFIGURATOR = "0x4ceBAFAAcc6Cb26FD90E4cDe138Eb812442bb5f3";
|
|
5
|
+
export const ORACLE = "0xfa4f5B081632c4709667D467F817C09d9008A46A";
|
|
6
|
+
export const AAVE_PROTOCOL_DATA_PROVIDER =
|
|
7
|
+
"0x0668EDE013c1c475724523409b8B6bE633469585";
|
|
8
|
+
export const POOL_ADMIN = "0x1128d177BdaA74Ae68EB06e693f4CbA6BF427a5e";
|
|
9
|
+
export const EMERGENCY_ADMIN = "0x1128d177BdaA74Ae68EB06e693f4CbA6BF427a5e";
|
|
10
|
+
export const COLLECTOR = "0xB45F5C501A22288dfdb897e5f73E189597e09288";
|
|
11
|
+
export const COLLECTOR_CONTROLLER = "address(0)";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export const POOL_ADDRESSES_PROVIDER =
|
|
2
|
+
"0x178113104fEcbcD7fF8669a0150721e231F0FD4B";
|
|
3
|
+
export const POOL = "0x9198F13B08E299d85E096929fA9781A1E3d5d827";
|
|
4
|
+
export const POOL_CONFIGURATOR = "0xc3c37E2aA3dc66464fa3C29ce2a6EC85beFC45e1";
|
|
5
|
+
export const ORACLE = "0xC365C653f7229894F93994CD0b30947Ab69Ff1D5";
|
|
6
|
+
export const AAVE_PROTOCOL_DATA_PROVIDER =
|
|
7
|
+
"0xFA3bD19110d986c5e5E9DD5F69362d05035D045B";
|
|
8
|
+
export const POOL_ADMIN = "0x943E44157dC0302a5CEb172374d1749018a00994";
|
|
9
|
+
export const EMERGENCY_ADMIN = "0x943E44157dC0302a5CEb172374d1749018a00994";
|
|
10
|
+
export const COLLECTOR = "0x943E44157dC0302a5CEb172374d1749018a00994";
|
|
11
|
+
export const COLLECTOR_CONTROLLER = "address(0)";
|