@defisaver/positions-sdk 2.1.117 → 2.1.118
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 +3 -2
- package/esm/aaveV4/lend.js +3 -2
- package/package.json +1 -1
- package/src/aaveV4/lend.ts +3 -2
package/cjs/aaveV4/lend.js
CHANGED
|
@@ -34,8 +34,9 @@ exports.AAVE_V4_TOKENIZED_SPOKES = {
|
|
|
34
34
|
GHO_PRIME: '0x900fD46d565d1ac8995928c0179052ec02a6D0E1',
|
|
35
35
|
USDC_PRIME: '0x486415fb1F8b062c89ED548f871cf64304AACb31',
|
|
36
36
|
USDT_PRIME: '0x46c588DD8453aC259c1f6a54b4C9A93C2aC3762D',
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
USDC_PAXOS: '0x4131E0B2E7AFeCEAf3d3b4225aA61a3B2B7535b8',
|
|
38
|
+
USDT_PAXOS: '0x8Dabe53E8cB991c57f0307F6f419E6D469b0deAA',
|
|
39
|
+
PT_USDG_SEP_PAXOS: '0x27eF1140364948A0E30E248297FfDFE5a4091ec4',
|
|
39
40
|
};
|
|
40
41
|
exports.AAVE_V4_TOKENIZED_SPOKE_ADDRESSES = {
|
|
41
42
|
[common_1.NetworkNumber.Eth]: Object.values(exports.AAVE_V4_TOKENIZED_SPOKES),
|
package/esm/aaveV4/lend.js
CHANGED
|
@@ -30,8 +30,9 @@ export const AAVE_V4_TOKENIZED_SPOKES = {
|
|
|
30
30
|
GHO_PRIME: '0x900fD46d565d1ac8995928c0179052ec02a6D0E1',
|
|
31
31
|
USDC_PRIME: '0x486415fb1F8b062c89ED548f871cf64304AACb31',
|
|
32
32
|
USDT_PRIME: '0x46c588DD8453aC259c1f6a54b4C9A93C2aC3762D',
|
|
33
|
-
|
|
34
|
-
|
|
33
|
+
USDC_PAXOS: '0x4131E0B2E7AFeCEAf3d3b4225aA61a3B2B7535b8',
|
|
34
|
+
USDT_PAXOS: '0x8Dabe53E8cB991c57f0307F6f419E6D469b0deAA',
|
|
35
|
+
PT_USDG_SEP_PAXOS: '0x27eF1140364948A0E30E248297FfDFE5a4091ec4',
|
|
35
36
|
};
|
|
36
37
|
export const AAVE_V4_TOKENIZED_SPOKE_ADDRESSES = {
|
|
37
38
|
[NetworkNumber.Eth]: Object.values(AAVE_V4_TOKENIZED_SPOKES),
|
package/package.json
CHANGED
package/src/aaveV4/lend.ts
CHANGED
|
@@ -49,8 +49,9 @@ export const AAVE_V4_TOKENIZED_SPOKES: Record<string, EthAddress> = {
|
|
|
49
49
|
USDC_PRIME: '0x486415fb1F8b062c89ED548f871cf64304AACb31',
|
|
50
50
|
USDT_PRIME: '0x46c588DD8453aC259c1f6a54b4C9A93C2aC3762D',
|
|
51
51
|
|
|
52
|
-
|
|
53
|
-
|
|
52
|
+
USDC_PAXOS: '0x4131E0B2E7AFeCEAf3d3b4225aA61a3B2B7535b8',
|
|
53
|
+
USDT_PAXOS: '0x8Dabe53E8cB991c57f0307F6f419E6D469b0deAA',
|
|
54
|
+
PT_USDG_SEP_PAXOS: '0x27eF1140364948A0E30E248297FfDFE5a4091ec4',
|
|
54
55
|
};
|
|
55
56
|
|
|
56
57
|
export const AAVE_V4_TOKENIZED_SPOKE_ADDRESSES: Partial<Record<NetworkNumber, EthAddress[]>> = {
|