starknet 10.7.4 → 10.7.5
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 +6 -0
- package/dist/index.global.js +2 -2
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [10.7.5](https://github.com/starknet-io/starknet.js/compare/v10.7.4...v10.7.5) (2026-09-08)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **calldata:** default to the parsing strategy that decodes signed integers correctly ([d766915](https://github.com/starknet-io/starknet.js/commit/d76691531bd095a13b822249be11aededc472b6d))
|
|
6
|
+
|
|
1
7
|
## [10.7.4](https://github.com/starknet-io/starknet.js/compare/v10.7.3...v10.7.4) (2026-09-08)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
package/dist/index.global.js
CHANGED
|
@@ -7538,7 +7538,7 @@ ${indent}}` : "}";
|
|
|
7538
7538
|
parsingStrategy;
|
|
7539
7539
|
constructor(abi, parsingStrategy) {
|
|
7540
7540
|
this.abi = abi;
|
|
7541
|
-
this.parsingStrategy = parsingStrategy ||
|
|
7541
|
+
this.parsingStrategy = parsingStrategy || hdParsingStrategy;
|
|
7542
7542
|
}
|
|
7543
7543
|
getRequestParser(abiType) {
|
|
7544
7544
|
if (this.parsingStrategy.request[abiType]) {
|
|
@@ -7584,7 +7584,7 @@ ${indent}}` : "}";
|
|
|
7584
7584
|
parsingStrategy;
|
|
7585
7585
|
constructor(abi, parsingStrategy) {
|
|
7586
7586
|
this.abi = abi;
|
|
7587
|
-
this.parsingStrategy = parsingStrategy ||
|
|
7587
|
+
this.parsingStrategy = parsingStrategy || hdParsingStrategy;
|
|
7588
7588
|
}
|
|
7589
7589
|
getRequestParser(abiType) {
|
|
7590
7590
|
if (this.parsingStrategy.request[abiType]) {
|