@defisaver/positions-sdk 2.1.133 → 2.1.135
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/cjs/aaveV4/lend.js
CHANGED
|
@@ -34,9 +34,9 @@ exports.AAVE_V4_TOKENIZED_SPOKES = {
|
|
|
34
34
|
GHO_PRIME: '0x900fD46d565d1ac8995928c0179052ec02a6D0E1',
|
|
35
35
|
USDC_PRIME: '0x486415fb1F8b062c89ED548f871cf64304AACb31',
|
|
36
36
|
USDT_PRIME: '0x46c588DD8453aC259c1f6a54b4C9A93C2aC3762D',
|
|
37
|
-
USDC_PAXOS: '
|
|
38
|
-
USDT_PAXOS: '
|
|
39
|
-
PT_USDG_Sep_PAXOS: '
|
|
37
|
+
USDC_PAXOS: '0xaed7c529bD2878170B61C758DfAa215AC7a4FD07',
|
|
38
|
+
USDT_PAXOS: '0xa0e97e45C2f89003730E467Bd484fA3eEcE5B4Cf',
|
|
39
|
+
PT_USDG_Sep_PAXOS: '0x7Df10B4A01350D2A1d95cFbE7c9207d7210A2663',
|
|
40
40
|
};
|
|
41
41
|
exports.AAVE_V4_TOKENIZED_SPOKE_ADDRESSES = {
|
|
42
42
|
[common_1.NetworkNumber.Eth]: Object.values(exports.AAVE_V4_TOKENIZED_SPOKES),
|
|
@@ -193,6 +193,7 @@ const AAVE_V4_USDG_MAPLE_SPOKE = (networkId) => ({
|
|
|
193
193
|
address: '0x774b9655413c34809c1f1b16b654465A89EBE989',
|
|
194
194
|
hubs: [
|
|
195
195
|
(0, exports.AAVE_V4_PAXOS_HUB)(types_1.NetworkNumber.Eth).address,
|
|
196
|
+
(0, exports.AAVE_V4_CORE_HUB)(types_1.NetworkNumber.Eth).address,
|
|
196
197
|
],
|
|
197
198
|
});
|
|
198
199
|
exports.AAVE_V4_USDG_MAPLE_SPOKE = AAVE_V4_USDG_MAPLE_SPOKE;
|
package/esm/aaveV4/lend.js
CHANGED
|
@@ -30,9 +30,9 @@ export const AAVE_V4_TOKENIZED_SPOKES = {
|
|
|
30
30
|
GHO_PRIME: '0x900fD46d565d1ac8995928c0179052ec02a6D0E1',
|
|
31
31
|
USDC_PRIME: '0x486415fb1F8b062c89ED548f871cf64304AACb31',
|
|
32
32
|
USDT_PRIME: '0x46c588DD8453aC259c1f6a54b4C9A93C2aC3762D',
|
|
33
|
-
USDC_PAXOS: '
|
|
34
|
-
USDT_PAXOS: '
|
|
35
|
-
PT_USDG_Sep_PAXOS: '
|
|
33
|
+
USDC_PAXOS: '0xaed7c529bD2878170B61C758DfAa215AC7a4FD07',
|
|
34
|
+
USDT_PAXOS: '0xa0e97e45C2f89003730E467Bd484fA3eEcE5B4Cf',
|
|
35
|
+
PT_USDG_Sep_PAXOS: '0x7Df10B4A01350D2A1d95cFbE7c9207d7210A2663',
|
|
36
36
|
};
|
|
37
37
|
export const AAVE_V4_TOKENIZED_SPOKE_ADDRESSES = {
|
|
38
38
|
[NetworkNumber.Eth]: Object.values(AAVE_V4_TOKENIZED_SPOKES),
|
|
@@ -172,6 +172,7 @@ export const AAVE_V4_USDG_MAPLE_SPOKE = (networkId) => ({
|
|
|
172
172
|
address: '0x774b9655413c34809c1f1b16b654465A89EBE989',
|
|
173
173
|
hubs: [
|
|
174
174
|
AAVE_V4_PAXOS_HUB(NetworkNumber.Eth).address,
|
|
175
|
+
AAVE_V4_CORE_HUB(NetworkNumber.Eth).address,
|
|
175
176
|
],
|
|
176
177
|
});
|
|
177
178
|
export const AaveV4Spokes = (networkId) => ({
|
package/package.json
CHANGED
package/src/aaveV4/lend.ts
CHANGED
|
@@ -49,9 +49,9 @@ export const AAVE_V4_TOKENIZED_SPOKES: Record<string, EthAddress> = {
|
|
|
49
49
|
USDC_PRIME: '0x486415fb1F8b062c89ED548f871cf64304AACb31',
|
|
50
50
|
USDT_PRIME: '0x46c588DD8453aC259c1f6a54b4C9A93C2aC3762D',
|
|
51
51
|
|
|
52
|
-
USDC_PAXOS: '
|
|
53
|
-
USDT_PAXOS: '
|
|
54
|
-
PT_USDG_Sep_PAXOS: '
|
|
52
|
+
USDC_PAXOS: '0xaed7c529bD2878170B61C758DfAa215AC7a4FD07',
|
|
53
|
+
USDT_PAXOS: '0xa0e97e45C2f89003730E467Bd484fA3eEcE5B4Cf',
|
|
54
|
+
PT_USDG_Sep_PAXOS: '0x7Df10B4A01350D2A1d95cFbE7c9207d7210A2663',
|
|
55
55
|
};
|
|
56
56
|
|
|
57
57
|
export const AAVE_V4_TOKENIZED_SPOKE_ADDRESSES: Partial<Record<NetworkNumber, EthAddress[]>> = {
|
|
@@ -201,6 +201,7 @@ export const AAVE_V4_USDG_MAPLE_SPOKE = (networkId: NetworkNumber): AaveV4SpokeI
|
|
|
201
201
|
address: '0x774b9655413c34809c1f1b16b654465A89EBE989',
|
|
202
202
|
hubs: [
|
|
203
203
|
AAVE_V4_PAXOS_HUB(NetworkNumber.Eth).address,
|
|
204
|
+
AAVE_V4_CORE_HUB(NetworkNumber.Eth).address,
|
|
204
205
|
],
|
|
205
206
|
});
|
|
206
207
|
|