@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.
@@ -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
@@ -5,6 +5,6 @@ import '@solana/web3.js';
5
5
  import '@solana/spl-token';
6
6
  import 'bn.js';
7
7
 
8
- const version = "0.0.56";
8
+ const version = "0.0.57";
9
9
 
10
10
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jup-ag/lend",
3
- "version": "0.0.56",
3
+ "version": "0.0.57",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "type": "module",