@haven-fi/solauto-sdk 1.0.184 → 1.0.185

Sign up to get free protection for your applications and to get access to all the features.
@@ -218,7 +218,7 @@ class TransactionsManager {
218
218
  const items = [...transactions];
219
219
  const client = this.txHandler;
220
220
  const updateLookupTable = await client.updateLookupTable();
221
- const updateLutTxName = "update lookup table";
221
+ const updateLutTxName = "create lookup table";
222
222
  if (updateLookupTable &&
223
223
  updateLookupTable.updateLutTx.getInstructions().length > 0 &&
224
224
  updateLookupTable?.needsToBeIsolated) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@haven-fi/solauto-sdk",
3
- "version": "1.0.184",
3
+ "version": "1.0.185",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "description": "Typescript SDK for the Solauto program on the Solana blockchain",
@@ -323,7 +323,7 @@ export class TransactionsManager {
323
323
  const client = this.txHandler as SolautoClient;
324
324
 
325
325
  const updateLookupTable = await client.updateLookupTable();
326
- const updateLutTxName = "update lookup table";
326
+ const updateLutTxName = "create lookup table";
327
327
  if (
328
328
  updateLookupTable &&
329
329
  updateLookupTable.updateLutTx.getInstructions().length > 0 &&