starknet 5.0.1 → 5.0.2
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.d.ts +1 -1
- package/dist/index.global.js +2 -1
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3857,7 +3857,8 @@ ${res.tx_failure_reason.error_message}` : res.tx_status;
|
|
|
3857
3857
|
calldata: invocation.calldata ?? [],
|
|
3858
3858
|
signature: signatureToDecimalArray(invocation.signature),
|
|
3859
3859
|
version: toHex((invocationDetails == null ? void 0 : invocationDetails.version) || 1),
|
|
3860
|
-
nonce: toHex(invocationDetails.nonce)
|
|
3860
|
+
nonce: toHex(invocationDetails.nonce),
|
|
3861
|
+
max_fee: toHex((invocationDetails == null ? void 0 : invocationDetails.maxFee) || 0)
|
|
3861
3862
|
}
|
|
3862
3863
|
).then(this.responseParser.parseFeeSimulateTransactionResponse);
|
|
3863
3864
|
}
|