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/dist/index.mjs CHANGED
@@ -3796,7 +3796,8 @@ ${res.tx_failure_reason.error_message}` : res.tx_status;
3796
3796
  calldata: invocation.calldata ?? [],
3797
3797
  signature: signatureToDecimalArray(invocation.signature),
3798
3798
  version: toHex((invocationDetails == null ? void 0 : invocationDetails.version) || 1),
3799
- nonce: toHex(invocationDetails.nonce)
3799
+ nonce: toHex(invocationDetails.nonce),
3800
+ max_fee: toHex((invocationDetails == null ? void 0 : invocationDetails.maxFee) || 0)
3800
3801
  }
3801
3802
  ).then(this.responseParser.parseFeeSimulateTransactionResponse);
3802
3803
  }