starknet 10.6.1 → 10.6.2

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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [10.6.2](https://github.com/starknet-io/starknet.js/compare/v10.6.1...v10.6.2) (2026-07-31)
2
+
3
+ ### Bug Fixes
4
+
5
+ - avoid extra waitForTransaction receipt delay ([6f21175](https://github.com/starknet-io/starknet.js/commit/6f21175eb4096756e570c9c04010a1b66ae596f1))
6
+
1
7
  ## [10.6.1](https://github.com/starknet-io/starknet.js/compare/v10.6.0...v10.6.1) (2026-07-30)
2
8
 
3
9
  ### Bug Fixes
@@ -11530,9 +11530,9 @@ ${indent}}` : "}";
11530
11530
  if (retries <= 0) {
11531
11531
  throw new Error(`waitForTransaction timed-out with retries ${this.retries}`);
11532
11532
  }
11533
+ retries -= 1;
11534
+ await wait(retryInterval);
11533
11535
  }
11534
- retries -= 1;
11535
- await wait(retryInterval);
11536
11536
  }
11537
11537
  return txReceipt;
11538
11538
  }
@@ -12230,9 +12230,9 @@ ${indent}}` : "}";
12230
12230
  if (retries <= 0) {
12231
12231
  throw new Error(`waitForTransaction timed-out with retries ${this.retries}`);
12232
12232
  }
12233
+ retries -= 1;
12234
+ await wait(retryInterval);
12233
12235
  }
12234
- retries -= 1;
12235
- await wait(retryInterval);
12236
12236
  }
12237
12237
  return txReceipt;
12238
12238
  }