@haven-fi/solauto-sdk 1.0.475 → 1.0.476

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.
@@ -255,7 +255,7 @@ class TransactionsManager {
255
255
  }
256
256
  async updateLut(tx, newLut) {
257
257
  const updateLutTxName = `${newLut ? "create" : "update"} lookup table`;
258
- await (0, generalUtils_1.retryWithExponentialBackoff)(async (attemptNum, prevError) => await this.sendTransaction(tx, updateLutTxName, attemptNum, this.getUpdatedPriorityFeeSetting(prevError, attemptNum), "skip-simulation"), 3, 150, this.errorsToThrow);
258
+ await (0, generalUtils_1.retryWithExponentialBackoff)(async (attemptNum, prevError) => await this.sendTransaction(tx, updateLutTxName, attemptNum, this.getUpdatedPriorityFeeSetting(prevError, attemptNum), "skip-simulation"), this.signableRetries, 150, this.errorsToThrow);
259
259
  }
260
260
  async clientSend(transactions) {
261
261
  const items = [...transactions];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@haven-fi/solauto-sdk",
3
- "version": "1.0.475",
3
+ "version": "1.0.476",
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",
@@ -406,7 +406,7 @@ export class TransactionsManager {
406
406
  this.getUpdatedPriorityFeeSetting(prevError, attemptNum),
407
407
  "skip-simulation"
408
408
  ),
409
- 3,
409
+ this.signableRetries,
410
410
  150,
411
411
  this.errorsToThrow
412
412
  );