@layr-labs/ecloud-sdk 0.4.0 → 0.4.1

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/VERSION CHANGED
@@ -1,2 +1,2 @@
1
- version=0.4.0
2
- commit=1d1fd38cab7bb2f42ef069fc76754411a632bfba
1
+ version=0.4.1
2
+ commit=720969aa6002b32d775e72494d1fa8884019b0e4
package/dist/billing.cjs CHANGED
@@ -1934,6 +1934,9 @@ async function executeBatch(options, logger = noopLogger) {
1934
1934
  if (gas?.maxPriorityFeePerGas) {
1935
1935
  txRequest.maxPriorityFeePerGas = gas.maxPriorityFeePerGas;
1936
1936
  }
1937
+ if (gas?.nonce != null) {
1938
+ txRequest.nonce = gas.nonce;
1939
+ }
1937
1940
  const hash = await walletClient.sendTransaction(txRequest);
1938
1941
  logger.info(`Transaction sent: ${hash}`);
1939
1942
  const receipt = await waitForReceipt(publicClient, hash, logger);