@bgd-labs/aave-address-book 4.34.0 → 4.34.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/dist/AaveAddressBook.d.mts +2 -2
- package/dist/AaveAddressBook.d.ts +2 -2
- package/dist/{AaveV3Ethereum-BxJtidRr.d.mts → AaveV3Ethereum-DZ65HO0Z.d.mts} +2 -2
- package/dist/{AaveV3Ethereum-BxJtidRr.d.ts → AaveV3Ethereum-DZ65HO0Z.d.ts} +2 -2
- package/dist/AaveV3Ethereum.d.mts +1 -1
- package/dist/AaveV3Ethereum.d.ts +1 -1
- package/dist/AaveV3Ethereum.js +2 -2
- package/dist/AaveV3Ethereum.js.map +1 -1
- package/dist/AaveV3Ethereum.mjs +2 -2
- package/dist/AaveV3Ethereum.mjs.map +1 -1
- package/dist/{AaveV3Plasma-Ie7uneSf.d.mts → AaveV3Plasma-BrgtDONx.d.mts} +58 -0
- package/dist/{AaveV3Plasma-Ie7uneSf.d.ts → AaveV3Plasma-BrgtDONx.d.ts} +58 -0
- package/dist/AaveV3Plasma.d.mts +1 -1
- package/dist/AaveV3Plasma.d.ts +1 -1
- package/dist/AaveV3Plasma.js +64 -0
- package/dist/AaveV3Plasma.js.map +1 -1
- package/dist/AaveV3Plasma.mjs +64 -0
- package/dist/AaveV3Plasma.mjs.map +1 -1
- package/dist/tokenlist.d.mts +52 -2
- package/dist/tokenlist.d.ts +52 -2
- package/dist/tokenlist.js +42 -2
- package/dist/tokenlist.js.map +1 -1
- package/dist/tokenlist.mjs +42 -2
- package/dist/tokenlist.mjs.map +1 -1
- package/package.json +1 -1
- package/src/AaveV3Plasma.sol +46 -0
- package/tokenlist.json +42 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bgd-labs/aave-address-book",
|
|
3
|
-
"version": "4.34.
|
|
3
|
+
"version": "4.34.1",
|
|
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/AaveV3Plasma.sol
CHANGED
|
@@ -224,6 +224,44 @@ library AaveV3PlasmaAssets {
|
|
|
224
224
|
|
|
225
225
|
// https://plasmascan.to/address/0xa047fdFb3420A27a5f926735b475fE5a1E968786
|
|
226
226
|
address internal constant WETH_STATA_TOKEN = 0xa047fdFb3420A27a5f926735b475fE5a1E968786;
|
|
227
|
+
|
|
228
|
+
// https://plasmascan.to/address/0x93B544c330F60A2aa05ceD87aEEffB8D38FD8c9a
|
|
229
|
+
address internal constant PT_USDe_15JAN2026_UNDERLYING =
|
|
230
|
+
0x93B544c330F60A2aa05ceD87aEEffB8D38FD8c9a;
|
|
231
|
+
|
|
232
|
+
uint8 internal constant PT_USDe_15JAN2026_DECIMALS = 18;
|
|
233
|
+
|
|
234
|
+
// https://plasmascan.to/address/0xEa601A9FECF80bFC529F08A51bD8Cb0d72fc862A
|
|
235
|
+
address internal constant PT_USDe_15JAN2026_A_TOKEN = 0xEa601A9FECF80bFC529F08A51bD8Cb0d72fc862A;
|
|
236
|
+
|
|
237
|
+
// https://plasmascan.to/address/0xD73253B18124837465b0c1fCB1A947d0542a991B
|
|
238
|
+
address internal constant PT_USDe_15JAN2026_V_TOKEN = 0xD73253B18124837465b0c1fCB1A947d0542a991B;
|
|
239
|
+
|
|
240
|
+
// https://plasmascan.to/address/0x30cb6ff8649Cc02cEa91971D4730EebeD5A8D2F1
|
|
241
|
+
address internal constant PT_USDe_15JAN2026_ORACLE = 0x30cb6ff8649Cc02cEa91971D4730EebeD5A8D2F1;
|
|
242
|
+
|
|
243
|
+
// https://plasmascan.to/address/0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC
|
|
244
|
+
address internal constant PT_USDe_15JAN2026_INTEREST_RATE_STRATEGY =
|
|
245
|
+
0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC;
|
|
246
|
+
|
|
247
|
+
// https://plasmascan.to/address/0x02FCC4989B4C9D435b7ceD3fE1Ba4CF77BBb5Dd8
|
|
248
|
+
address internal constant PT_sUSDE_15JAN2026_UNDERLYING =
|
|
249
|
+
0x02FCC4989B4C9D435b7ceD3fE1Ba4CF77BBb5Dd8;
|
|
250
|
+
|
|
251
|
+
uint8 internal constant PT_sUSDE_15JAN2026_DECIMALS = 18;
|
|
252
|
+
|
|
253
|
+
// https://plasmascan.to/address/0x0b9A412c94f07223752031f75a20DDe542D63d5C
|
|
254
|
+
address internal constant PT_sUSDE_15JAN2026_A_TOKEN = 0x0b9A412c94f07223752031f75a20DDe542D63d5C;
|
|
255
|
+
|
|
256
|
+
// https://plasmascan.to/address/0xb2A5AD339d9687B5606b21B37F72f350e5BbC622
|
|
257
|
+
address internal constant PT_sUSDE_15JAN2026_V_TOKEN = 0xb2A5AD339d9687B5606b21B37F72f350e5BbC622;
|
|
258
|
+
|
|
259
|
+
// https://plasmascan.to/address/0x3eca1c7836eA09DB3dc85be7B5526Ce80E2609a1
|
|
260
|
+
address internal constant PT_sUSDE_15JAN2026_ORACLE = 0x3eca1c7836eA09DB3dc85be7B5526Ce80E2609a1;
|
|
261
|
+
|
|
262
|
+
// https://plasmascan.to/address/0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC
|
|
263
|
+
address internal constant PT_sUSDE_15JAN2026_INTEREST_RATE_STRATEGY =
|
|
264
|
+
0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC;
|
|
227
265
|
}
|
|
228
266
|
library AaveV3PlasmaEModes {
|
|
229
267
|
uint8 internal constant NONE = 0;
|
|
@@ -235,6 +273,14 @@ library AaveV3PlasmaEModes {
|
|
|
235
273
|
uint8 internal constant WEETH_WETH = 3;
|
|
236
274
|
|
|
237
275
|
uint8 internal constant WEETH_STABLECOINS = 4;
|
|
276
|
+
|
|
277
|
+
uint8 internal constant PT_USDE_STABLECOINS_JAN_2026 = 5;
|
|
278
|
+
|
|
279
|
+
uint8 internal constant PT_USDE_USDE_JAN_2026 = 6;
|
|
280
|
+
|
|
281
|
+
uint8 internal constant PT_SUSDE_STABLECOINS_JAN_2026 = 7;
|
|
282
|
+
|
|
283
|
+
uint8 internal constant PT_SUSDE_USDE_JAN_2026 = 8;
|
|
238
284
|
}
|
|
239
285
|
library AaveV3PlasmaExternalLibraries {
|
|
240
286
|
// https://plasmascan.to/address/0x50a4646D4f5Cc0e45051bF4f222D02fA39eC749D
|
package/tokenlist.json
CHANGED
|
@@ -8936,6 +8936,46 @@
|
|
|
8936
8936
|
"underlyingAToken": "0xf1aB7f60128924d69f6d7dE25A20eF70bBd43d07"
|
|
8937
8937
|
}
|
|
8938
8938
|
},
|
|
8939
|
+
{
|
|
8940
|
+
"chainId": 9745,
|
|
8941
|
+
"address": "0x93B544c330F60A2aa05ceD87aEEffB8D38FD8c9a",
|
|
8942
|
+
"name": "PT Ethena USDe 15JAN2026",
|
|
8943
|
+
"decimals": 18,
|
|
8944
|
+
"symbol": "PT-USDe-15JAN2026",
|
|
8945
|
+
"tags": ["underlying"]
|
|
8946
|
+
},
|
|
8947
|
+
{
|
|
8948
|
+
"chainId": 9745,
|
|
8949
|
+
"address": "0xEa601A9FECF80bFC529F08A51bD8Cb0d72fc862A",
|
|
8950
|
+
"name": "Aave Plasma PT_USDe_15JAN2026",
|
|
8951
|
+
"decimals": 18,
|
|
8952
|
+
"symbol": "aPlaPT_USDe_15JAN2026",
|
|
8953
|
+
"tags": ["aTokenV3", "aaveV3"],
|
|
8954
|
+
"extensions": {
|
|
8955
|
+
"pool": "0x925a2A7214Ed92428B5b1B090F80b25700095e12",
|
|
8956
|
+
"underlying": "0x93B544c330F60A2aa05ceD87aEEffB8D38FD8c9a"
|
|
8957
|
+
}
|
|
8958
|
+
},
|
|
8959
|
+
{
|
|
8960
|
+
"chainId": 9745,
|
|
8961
|
+
"address": "0x02FCC4989B4C9D435b7ceD3fE1Ba4CF77BBb5Dd8",
|
|
8962
|
+
"name": "PT Ethena sUSDE 15JAN2026",
|
|
8963
|
+
"decimals": 18,
|
|
8964
|
+
"symbol": "PT-sUSDE-15JAN2026",
|
|
8965
|
+
"tags": ["underlying"]
|
|
8966
|
+
},
|
|
8967
|
+
{
|
|
8968
|
+
"chainId": 9745,
|
|
8969
|
+
"address": "0x0b9A412c94f07223752031f75a20DDe542D63d5C",
|
|
8970
|
+
"name": "Aave Plasma PT_sUSDE_15JAN2026",
|
|
8971
|
+
"decimals": 18,
|
|
8972
|
+
"symbol": "aPlaPT_sUSDE_15JAN2026",
|
|
8973
|
+
"tags": ["aTokenV3", "aaveV3"],
|
|
8974
|
+
"extensions": {
|
|
8975
|
+
"pool": "0x925a2A7214Ed92428B5b1B090F80b25700095e12",
|
|
8976
|
+
"underlying": "0x02FCC4989B4C9D435b7ceD3fE1Ba4CF77BBb5Dd8"
|
|
8977
|
+
}
|
|
8978
|
+
},
|
|
8939
8979
|
{
|
|
8940
8980
|
"chainId": 1,
|
|
8941
8981
|
"address": "0x6bf183243FdD1e306ad2C4450BC7dcf6f0bf8Aa6",
|
|
@@ -8989,6 +9029,6 @@
|
|
|
8989
9029
|
}
|
|
8990
9030
|
}
|
|
8991
9031
|
],
|
|
8992
|
-
"version": { "major": 3, "minor": 0, "patch":
|
|
8993
|
-
"timestamp": "2025-10-
|
|
9032
|
+
"version": { "major": 3, "minor": 0, "patch": 138 },
|
|
9033
|
+
"timestamp": "2025-10-20T12:31:59.573Z"
|
|
8994
9034
|
}
|