@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.
- package/dist/borrow/index.d.mts +6 -0
- package/dist/borrow/index.d.ts +6 -0
- package/dist/borrow/index.mjs +2 -0
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/borrow/index.d.mts
CHANGED
|
@@ -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
|
}>;
|
package/dist/borrow/index.d.ts
CHANGED
|
@@ -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
|
}>;
|
package/dist/borrow/index.mjs
CHANGED
|
@@ -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