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.mjs
CHANGED
|
@@ -3126,7 +3126,7 @@ var AbiParser1 = class {
|
|
|
3126
3126
|
parsingStrategy;
|
|
3127
3127
|
constructor(abi, parsingStrategy) {
|
|
3128
3128
|
this.abi = abi;
|
|
3129
|
-
this.parsingStrategy = parsingStrategy ||
|
|
3129
|
+
this.parsingStrategy = parsingStrategy || hdParsingStrategy;
|
|
3130
3130
|
}
|
|
3131
3131
|
getRequestParser(abiType) {
|
|
3132
3132
|
if (this.parsingStrategy.request[abiType]) {
|
|
@@ -3172,7 +3172,7 @@ var AbiParser2 = class {
|
|
|
3172
3172
|
parsingStrategy;
|
|
3173
3173
|
constructor(abi, parsingStrategy) {
|
|
3174
3174
|
this.abi = abi;
|
|
3175
|
-
this.parsingStrategy = parsingStrategy ||
|
|
3175
|
+
this.parsingStrategy = parsingStrategy || hdParsingStrategy;
|
|
3176
3176
|
}
|
|
3177
3177
|
getRequestParser(abiType) {
|
|
3178
3178
|
if (this.parsingStrategy.request[abiType]) {
|