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/dist/index.js
CHANGED
|
@@ -3311,7 +3311,7 @@ var AbiParser1 = class {
|
|
|
3311
3311
|
parsingStrategy;
|
|
3312
3312
|
constructor(abi, parsingStrategy) {
|
|
3313
3313
|
this.abi = abi;
|
|
3314
|
-
this.parsingStrategy = parsingStrategy ||
|
|
3314
|
+
this.parsingStrategy = parsingStrategy || hdParsingStrategy;
|
|
3315
3315
|
}
|
|
3316
3316
|
getRequestParser(abiType) {
|
|
3317
3317
|
if (this.parsingStrategy.request[abiType]) {
|
|
@@ -3357,7 +3357,7 @@ var AbiParser2 = class {
|
|
|
3357
3357
|
parsingStrategy;
|
|
3358
3358
|
constructor(abi, parsingStrategy) {
|
|
3359
3359
|
this.abi = abi;
|
|
3360
|
-
this.parsingStrategy = parsingStrategy ||
|
|
3360
|
+
this.parsingStrategy = parsingStrategy || hdParsingStrategy;
|
|
3361
3361
|
}
|
|
3362
3362
|
getRequestParser(abiType) {
|
|
3363
3363
|
if (this.parsingStrategy.request[abiType]) {
|