@jup-ag/lend 0.0.56 → 0.0.57
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/borrow/index.mjs +12 -4
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/borrow/index.mjs
CHANGED
|
@@ -1327,20 +1327,28 @@ async function getOperateContext({
|
|
|
1327
1327
|
signer,
|
|
1328
1328
|
signerSupplyTokenAccount: getAssociatedTokenAddressSync(
|
|
1329
1329
|
vaultConfig.supplyToken,
|
|
1330
|
-
signer
|
|
1330
|
+
signer,
|
|
1331
|
+
false,
|
|
1332
|
+
supplyTokenProgram
|
|
1331
1333
|
),
|
|
1332
1334
|
signerBorrowTokenAccount: getAssociatedTokenAddressSync(
|
|
1333
1335
|
vaultConfig.borrowToken,
|
|
1334
|
-
signer
|
|
1336
|
+
signer,
|
|
1337
|
+
false,
|
|
1338
|
+
borrowTokenProgram
|
|
1335
1339
|
),
|
|
1336
1340
|
recipient: signer,
|
|
1337
1341
|
recipientSupplyTokenAccount: getAssociatedTokenAddressSync(
|
|
1338
1342
|
vaultConfig.supplyToken,
|
|
1339
|
-
signer
|
|
1343
|
+
signer,
|
|
1344
|
+
false,
|
|
1345
|
+
supplyTokenProgram
|
|
1340
1346
|
),
|
|
1341
1347
|
recipientBorrowTokenAccount: getAssociatedTokenAddressSync(
|
|
1342
1348
|
vaultConfig.borrowToken,
|
|
1343
|
-
signer
|
|
1349
|
+
signer,
|
|
1350
|
+
false,
|
|
1351
|
+
borrowTokenProgram
|
|
1344
1352
|
),
|
|
1345
1353
|
vaultConfig: getVaultConfig(vaultId),
|
|
1346
1354
|
vaultState: getVaultState(vaultId),
|
package/dist/index.mjs
CHANGED