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