genlayer-js 0.14.0 → 0.14.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/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
 
2
2
 
3
+ ## 0.14.1 (2025-08-13)
4
+
3
5
  ## 0.14.0 (2025-07-30)
4
6
 
5
7
 
package/dist/index.cjs CHANGED
@@ -589,7 +589,8 @@ var _sendTransaction = async ({
589
589
  data: encodedData,
590
590
  type: "legacy",
591
591
  nonce: Number(nonce),
592
- value
592
+ value,
593
+ gas: 21000n
593
594
  });
594
595
  if (_optionalChain([validatedSenderAccount, 'optionalAccess', _20 => _20.type]) !== "local") {
595
596
  const formattedRequest = {
package/dist/index.js CHANGED
@@ -589,7 +589,8 @@ var _sendTransaction = async ({
589
589
  data: encodedData,
590
590
  type: "legacy",
591
591
  nonce: Number(nonce),
592
- value
592
+ value,
593
+ gas: 21000n
593
594
  });
594
595
  if (validatedSenderAccount?.type !== "local") {
595
596
  const formattedRequest = {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "genlayer-js",
3
3
  "type": "module",
4
- "version": "0.14.0",
4
+ "version": "0.14.1",
5
5
  "description": "GenLayer JavaScript SDK",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -247,6 +247,7 @@ const _sendTransaction = async ({
247
247
  type: "legacy",
248
248
  nonce: Number(nonce),
249
249
  value: value,
250
+ gas: 21000n,
250
251
  });
251
252
 
252
253
  if (validatedSenderAccount?.type !== "local") {