@bgd-labs/aave-address-book 4.25.2 → 4.25.3
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/dist/AaveAddressBook.d.mts +1 -1
- package/dist/AaveAddressBook.d.ts +1 -1
- package/dist/{AaveV3Ethereum-BAAoPla3.d.mts → AaveV3Ethereum-ChZ6kS3B.d.mts} +29 -0
- package/dist/{AaveV3Ethereum-BAAoPla3.d.ts → AaveV3Ethereum-ChZ6kS3B.d.ts} +29 -0
- package/dist/AaveV3Ethereum.d.mts +1 -1
- package/dist/AaveV3Ethereum.d.ts +1 -1
- package/dist/AaveV3Ethereum.js +44 -0
- package/dist/AaveV3Ethereum.js.map +1 -1
- package/dist/AaveV3Ethereum.mjs +44 -0
- package/dist/AaveV3Ethereum.mjs.map +1 -1
- package/dist/tokenlist.d.mts +27 -2
- package/dist/tokenlist.d.ts +27 -2
- package/dist/tokenlist.js +22 -2
- package/dist/tokenlist.js.map +1 -1
- package/dist/tokenlist.mjs +22 -2
- package/dist/tokenlist.mjs.map +1 -1
- package/package.json +1 -1
- package/src/AaveV3Ethereum.sol +23 -0
- package/tokenlist.json +22 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bgd-labs/aave-address-book",
|
|
3
|
-
"version": "4.25.
|
|
3
|
+
"version": "4.25.3",
|
|
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
|
"private": false,
|
|
6
6
|
"files": [
|
package/src/AaveV3Ethereum.sol
CHANGED
|
@@ -1119,6 +1119,25 @@ library AaveV3EthereumAssets {
|
|
|
1119
1119
|
// https://etherscan.io/address/0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB
|
|
1120
1120
|
address internal constant PT_sUSDE_25SEP2025_INTEREST_RATE_STRATEGY =
|
|
1121
1121
|
0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB;
|
|
1122
|
+
|
|
1123
|
+
// https://etherscan.io/address/0xBC6736d346a5eBC0dEbc997397912CD9b8FAe10a
|
|
1124
|
+
address internal constant PT_USDe_25SEP2025_UNDERLYING =
|
|
1125
|
+
0xBC6736d346a5eBC0dEbc997397912CD9b8FAe10a;
|
|
1126
|
+
|
|
1127
|
+
uint8 internal constant PT_USDe_25SEP2025_DECIMALS = 18;
|
|
1128
|
+
|
|
1129
|
+
// https://etherscan.io/address/0x38A5357Ce55c81add62aBc84Fb32981e2626ADEf
|
|
1130
|
+
address internal constant PT_USDe_25SEP2025_A_TOKEN = 0x38A5357Ce55c81add62aBc84Fb32981e2626ADEf;
|
|
1131
|
+
|
|
1132
|
+
// https://etherscan.io/address/0x0D8486E1CAbf3C9407B3DdA0cfc4d9C3101fB683
|
|
1133
|
+
address internal constant PT_USDe_25SEP2025_V_TOKEN = 0x0D8486E1CAbf3C9407B3DdA0cfc4d9C3101fB683;
|
|
1134
|
+
|
|
1135
|
+
// https://etherscan.io/address/0x8B17C02d22EE7D6B8D6829ceB710A458de41E84a
|
|
1136
|
+
address internal constant PT_USDe_25SEP2025_ORACLE = 0x8B17C02d22EE7D6B8D6829ceB710A458de41E84a;
|
|
1137
|
+
|
|
1138
|
+
// https://etherscan.io/address/0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB
|
|
1139
|
+
address internal constant PT_USDe_25SEP2025_INTEREST_RATE_STRATEGY =
|
|
1140
|
+
0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB;
|
|
1122
1141
|
}
|
|
1123
1142
|
library AaveV3EthereumEModes {
|
|
1124
1143
|
uint8 internal constant NONE = 0;
|
|
@@ -1158,6 +1177,10 @@ library AaveV3EthereumEModes {
|
|
|
1158
1177
|
uint8 internal constant PT_SUSDE_STABLECOINS_SEPTEMBER_2025 = 17;
|
|
1159
1178
|
|
|
1160
1179
|
uint8 internal constant PT_SUSDE_USDE_SEPTEMBER_2025 = 18;
|
|
1180
|
+
|
|
1181
|
+
uint8 internal constant PT_USDE_STABLECOINS_SEPTEMBER_2025 = 19;
|
|
1182
|
+
|
|
1183
|
+
uint8 internal constant PT_USDE_USDE_SEPTEMBER_2025 = 20;
|
|
1161
1184
|
}
|
|
1162
1185
|
library AaveV3EthereumExternalLibraries {
|
|
1163
1186
|
// https://etherscan.io/address/0x4fDB5d360f946CFD25b14F346f748204c0C6a2F4
|
package/tokenlist.json
CHANGED
|
@@ -3248,6 +3248,26 @@
|
|
|
3248
3248
|
"underlying": "0x9F56094C450763769BA0EA9Fe2876070c0fD5F77"
|
|
3249
3249
|
}
|
|
3250
3250
|
},
|
|
3251
|
+
{
|
|
3252
|
+
"chainId": 1,
|
|
3253
|
+
"address": "0xBC6736d346a5eBC0dEbc997397912CD9b8FAe10a",
|
|
3254
|
+
"name": "PT Ethena USDe 25SEP2025",
|
|
3255
|
+
"decimals": 18,
|
|
3256
|
+
"symbol": "PT-USDe-25SEP2025",
|
|
3257
|
+
"tags": ["underlying"]
|
|
3258
|
+
},
|
|
3259
|
+
{
|
|
3260
|
+
"chainId": 1,
|
|
3261
|
+
"address": "0x38A5357Ce55c81add62aBc84Fb32981e2626ADEf",
|
|
3262
|
+
"name": "Aave Ethereum PT_USDe_25SEP2025",
|
|
3263
|
+
"decimals": 18,
|
|
3264
|
+
"symbol": "aEthPT_USDe_25SEP2025",
|
|
3265
|
+
"tags": ["aTokenV3", "aaveV3"],
|
|
3266
|
+
"extensions": {
|
|
3267
|
+
"pool": "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2",
|
|
3268
|
+
"underlying": "0xBC6736d346a5eBC0dEbc997397912CD9b8FAe10a"
|
|
3269
|
+
}
|
|
3270
|
+
},
|
|
3251
3271
|
{
|
|
3252
3272
|
"chainId": 137,
|
|
3253
3273
|
"address": "0x82E64f49Ed5EC1bC6e43DAD4FC8Af9bb3A2312EE",
|
|
@@ -8406,6 +8426,6 @@
|
|
|
8406
8426
|
}
|
|
8407
8427
|
}
|
|
8408
8428
|
],
|
|
8409
|
-
"version": { "major": 3, "minor": 0, "patch":
|
|
8410
|
-
"timestamp": "2025-07-
|
|
8429
|
+
"version": { "major": 3, "minor": 0, "patch": 125 },
|
|
8430
|
+
"timestamp": "2025-07-30T18:13:06.469Z"
|
|
8411
8431
|
}
|