starknet 6.0.0-beta.7 → 6.0.0-beta.9

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,15 @@
1
+ # [6.0.0-beta.9](https://github.com/starknet-io/starknet.js/compare/v6.0.0-beta.8...v6.0.0-beta.9) (2023-12-19)
2
+
3
+ ### Bug Fixes
4
+
5
+ - acc deploy_acc ([732cd94](https://github.com/starknet-io/starknet.js/commit/732cd946f26c2b0fe893067f25c1fe712d72d49b))
6
+
7
+ # [6.0.0-beta.8](https://github.com/starknet-io/starknet.js/compare/v6.0.0-beta.7...v6.0.0-beta.8) (2023-12-19)
8
+
9
+ ### Bug Fixes
10
+
11
+ - estimateFeeBulk provided version ([da717be](https://github.com/starknet-io/starknet.js/commit/da717be8e656087eaba21c865a6dd0b648664491))
12
+
1
13
  # [6.0.0-beta.7](https://github.com/starknet-io/starknet.js/compare/v6.0.0-beta.6...v6.0.0-beta.7) (2023-12-14)
2
14
 
3
15
  ### Bug Fixes
@@ -12678,13 +12678,16 @@ var starknet = (() => {
12678
12678
  return this.estimateInvokeFee(calls, details);
12679
12679
  }
12680
12680
  async estimateFeeBulk(invocations, details = {}) {
12681
- const { nonce, blockIdentifier } = details;
12681
+ const { nonce, blockIdentifier, version } = details;
12682
12682
  const accountInvocations = await this.accountInvocationsFactory(invocations, {
12683
12683
  ...v3Details(details),
12684
12684
  versions: [
12685
12685
  "0x100000000000000000000000000000001" /* F1 */,
12686
12686
  // non-sierra
12687
- this.getPreferredVersion("0x100000000000000000000000000000002" /* F2 */, "0x100000000000000000000000000000003" /* F3 */)
12687
+ toTransactionVersion(
12688
+ this.getPreferredVersion("0x100000000000000000000000000000002" /* F2 */, "0x100000000000000000000000000000003" /* F3 */),
12689
+ version
12690
+ )
12688
12691
  // sierra
12689
12692
  ],
12690
12693
  nonce,
@@ -13031,6 +13034,7 @@ var starknet = (() => {
13031
13034
  constructorCalldata: compiledCalldata
13032
13035
  });
13033
13036
  return {
13037
+ ...v3Details(details),
13034
13038
  classHash,
13035
13039
  addressSalt,
13036
13040
  constructorCalldata: compiledCalldata,