@jup-ag/lend 0.0.31 → 0.0.32

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.
@@ -7999,6 +7999,12 @@ declare function getInitPositionContext(vaultId: number, positionId: number, sig
7999
7999
  };
8000
8000
  declare const getOperateIx: ({ vaultId, positionId, colAmount, debtAmount, connection, signer, recipient, positionOwner, cluster, }: OperateParams) => Promise<{
8001
8001
  nftId: number;
8002
+ remainingAccounts: {
8003
+ pubkey: PublicKey;
8004
+ isWritable: boolean;
8005
+ isSigner: boolean;
8006
+ }[];
8007
+ remainingAccountsIndices: number[];
8002
8008
  addressLookupTableAccounts: _solana_web3_js.AddressLookupTableAccount[];
8003
8009
  ixs: TransactionInstruction[];
8004
8010
  }>;
@@ -7999,6 +7999,12 @@ declare function getInitPositionContext(vaultId: number, positionId: number, sig
7999
7999
  };
8000
8000
  declare const getOperateIx: ({ vaultId, positionId, colAmount, debtAmount, connection, signer, recipient, positionOwner, cluster, }: OperateParams) => Promise<{
8001
8001
  nftId: number;
8002
+ remainingAccounts: {
8003
+ pubkey: PublicKey;
8004
+ isWritable: boolean;
8005
+ isSigner: boolean;
8006
+ }[];
8007
+ remainingAccountsIndices: number[];
8002
8008
  addressLookupTableAccounts: _solana_web3_js.AddressLookupTableAccount[];
8003
8009
  ixs: TransactionInstruction[];
8004
8010
  }>;
@@ -1991,6 +1991,8 @@ const getOperateIx = async ({
1991
1991
  ]);
1992
1992
  return {
1993
1993
  nftId,
1994
+ remainingAccounts,
1995
+ remainingAccountsIndices,
1994
1996
  addressLookupTableAccounts: addressLookupTable.value ? [addressLookupTable.value] : [],
1995
1997
  ixs: initPositionIx ? [initPositionIx, ...otherIxs, operateIx] : [...otherIxs, operateIx]
1996
1998
  };
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.31";
8
+ const version = "0.0.32";
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.31",
3
+ "version": "0.0.32",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "type": "module",