@meshsdk/transaction 1.7.33 → 1.8.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/dist/index.cjs CHANGED
@@ -1276,10 +1276,10 @@ var MeshTxBuilderCore = class {
1276
1276
  return this;
1277
1277
  };
1278
1278
  /**
1279
- * Sets a specific fee for the transaction to use
1280
- * @param fee The specified fee
1281
- * @returns The MeshTxBuilder instance
1282
- */
1279
+ * Sets a specific fee for the transaction to use
1280
+ * @param fee The specified fee
1281
+ * @returns The MeshTxBuilder instance
1282
+ */
1283
1283
  setFee = (fee) => {
1284
1284
  this.meshTxBuilderBody.fee = fee;
1285
1285
  return this;
package/dist/index.d.cts CHANGED
@@ -473,10 +473,10 @@ declare class MeshTxBuilderCore {
473
473
  */
474
474
  protocolParams: (params: Partial<Protocol>) => this;
475
475
  /**
476
- * Sets a specific fee for the transaction to use
477
- * @param fee The specified fee
478
- * @returns The MeshTxBuilder instance
479
- */
476
+ * Sets a specific fee for the transaction to use
477
+ * @param fee The specified fee
478
+ * @returns The MeshTxBuilder instance
479
+ */
480
480
  setFee: (fee: string) => this;
481
481
  /**
482
482
  * Sets the network to use, this is mainly to know the cost models to be used to calculate script integrity hash
package/dist/index.d.ts CHANGED
@@ -473,10 +473,10 @@ declare class MeshTxBuilderCore {
473
473
  */
474
474
  protocolParams: (params: Partial<Protocol>) => this;
475
475
  /**
476
- * Sets a specific fee for the transaction to use
477
- * @param fee The specified fee
478
- * @returns The MeshTxBuilder instance
479
- */
476
+ * Sets a specific fee for the transaction to use
477
+ * @param fee The specified fee
478
+ * @returns The MeshTxBuilder instance
479
+ */
480
480
  setFee: (fee: string) => this;
481
481
  /**
482
482
  * Sets the network to use, this is mainly to know the cost models to be used to calculate script integrity hash
package/dist/index.js CHANGED
@@ -1243,10 +1243,10 @@ var MeshTxBuilderCore = class {
1243
1243
  return this;
1244
1244
  };
1245
1245
  /**
1246
- * Sets a specific fee for the transaction to use
1247
- * @param fee The specified fee
1248
- * @returns The MeshTxBuilder instance
1249
- */
1246
+ * Sets a specific fee for the transaction to use
1247
+ * @param fee The specified fee
1248
+ * @returns The MeshTxBuilder instance
1249
+ */
1250
1250
  setFee = (fee) => {
1251
1251
  this.meshTxBuilderBody.fee = fee;
1252
1252
  return this;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshsdk/transaction",
3
- "version": "1.7.33",
3
+ "version": "1.8.1",
4
4
  "description": "Transactions - https://meshjs.dev/apis/transaction",
5
5
  "main": "./dist/index.cjs",
6
6
  "browser": "./dist/index.js",
@@ -35,9 +35,9 @@
35
35
  "typescript": "^5.3.3"
36
36
  },
37
37
  "dependencies": {
38
- "@meshsdk/common": "1.7.33",
39
- "@meshsdk/core-csl": "1.7.33",
40
- "@meshsdk/core-cst": "1.7.33",
38
+ "@meshsdk/common": "1.8.1",
39
+ "@meshsdk/core-csl": "1.8.1",
40
+ "@meshsdk/core-cst": "1.8.1",
41
41
  "json-bigint": "^1.0.0"
42
42
  },
43
43
  "prettier": "@meshsdk/configs/prettier",