@jup-ag/lend 0.0.34 → 0.0.35

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.
@@ -8040,6 +8040,7 @@ declare const getOperateIx: ({ vaultId, positionId, colAmount, debtAmount, conne
8040
8040
  isSigner: boolean;
8041
8041
  }[];
8042
8042
  remainingAccountsIndices: number[];
8043
+ addressLookupTableAddresses: PublicKey[];
8043
8044
  addressLookupTableAccounts: _solana_web3_js.AddressLookupTableAccount[];
8044
8045
  ixs: TransactionInstruction[];
8045
8046
  }>;
@@ -8040,6 +8040,7 @@ declare const getOperateIx: ({ vaultId, positionId, colAmount, debtAmount, conne
8040
8040
  isSigner: boolean;
8041
8041
  }[];
8042
8042
  remainingAccountsIndices: number[];
8043
+ addressLookupTableAddresses: PublicKey[];
8043
8044
  addressLookupTableAccounts: _solana_web3_js.AddressLookupTableAccount[];
8044
8045
  ixs: TransactionInstruction[];
8045
8046
  }>;
@@ -1991,6 +1991,7 @@ const getOperateIx = async ({
1991
1991
  accounts,
1992
1992
  remainingAccounts,
1993
1993
  remainingAccountsIndices,
1994
+ addressLookupTableAddresses: lookupTable ? [lookupTable] : [],
1994
1995
  addressLookupTableAccounts: addressLookupTable.value ? [addressLookupTable.value] : [],
1995
1996
  ixs: initPositionIx ? [initPositionIx, ...otherIxs, operateIx] : [...otherIxs, operateIx]
1996
1997
  };
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.34";
8
+ const version = "0.0.35";
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.34",
3
+ "version": "0.0.35",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "type": "module",