starknet 6.21.0 → 6.21.1

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
+ ## [6.21.1](https://github.com/starknet-io/starknet.js/compare/v6.21.0...v6.21.1) (2025-01-23)
2
+
3
+ ### Bug Fixes
4
+
5
+ - pass signerDetails to fix estimateFeeBulk ([#1299](https://github.com/starknet-io/starknet.js/issues/1299)) ([f09f20d](https://github.com/starknet-io/starknet.js/commit/f09f20da47396456350d26610dabd2e2641a5a98))
6
+
1
7
  # [6.21.0](https://github.com/starknet-io/starknet.js/compare/v6.20.3...v6.21.0) (2025-01-08)
2
8
 
3
9
  ### Bug Fixes
@@ -19755,7 +19755,8 @@ ${indent}}` : "}";
19755
19755
  );
19756
19756
  return {
19757
19757
  ...common2,
19758
- ...payload
19758
+ ...payload,
19759
+ ...signerDetails
19759
19760
  };
19760
19761
  }
19761
19762
  if (transaction.type === TransactionType.DEPLOY) {
@@ -19767,6 +19768,7 @@ ${indent}}` : "}";
19767
19768
  return {
19768
19769
  ...common2,
19769
19770
  ...payload,
19771
+ ...signerDetails,
19770
19772
  type: TransactionType.INVOKE
19771
19773
  };
19772
19774
  }
@@ -19777,7 +19779,8 @@ ${indent}}` : "}";
19777
19779
  const payload = await this.buildDeclarePayload(txPayload, signerDetails);
19778
19780
  return {
19779
19781
  ...common2,
19780
- ...payload
19782
+ ...payload,
19783
+ ...signerDetails
19781
19784
  };
19782
19785
  }
19783
19786
  if (transaction.type === TransactionType.DEPLOY_ACCOUNT) {
@@ -19787,7 +19790,8 @@ ${indent}}` : "}";
19787
19790
  const payload = await this.buildAccountDeployPayload(txPayload, signerDetails);
19788
19791
  return {
19789
19792
  ...common2,
19790
- ...payload
19793
+ ...payload,
19794
+ ...signerDetails
19791
19795
  };
19792
19796
  }
19793
19797
  throw Error(`accountInvocationsFactory: unsupported transaction type: ${transaction}`);