@meshsdk/transaction 1.9.0-beta.86 → 1.9.0-beta.89

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
@@ -1764,7 +1764,7 @@ var CSDKRedeemerTagToMeshRedeemerTag = (tag) => {
1764
1764
  };
1765
1765
 
1766
1766
  // src/mesh-tx-builder/coin-selection/largest-first-selector.ts
1767
- var import_input_selection = require("@cardano-sdk/input-selection");
1767
+ var MAX_U64 = 18446744073709551615n;
1768
1768
  var mergeValue = (a, b) => {
1769
1769
  const merged = new Map(a);
1770
1770
  b.forEach((quantity, unit) => {
@@ -2009,7 +2009,7 @@ var LargestFirstInputSelector = class {
2009
2009
  newInputs: selectedUtxos,
2010
2010
  newOutputs: /* @__PURE__ */ new Set(),
2011
2011
  change: changeOutputs,
2012
- fee: import_input_selection.MAX_U64
2012
+ fee: MAX_U64
2013
2013
  })).fee;
2014
2014
  }
2015
2015
  }
package/dist/index.js CHANGED
@@ -1732,7 +1732,7 @@ var CSDKRedeemerTagToMeshRedeemerTag = (tag) => {
1732
1732
  };
1733
1733
 
1734
1734
  // src/mesh-tx-builder/coin-selection/largest-first-selector.ts
1735
- import { MAX_U64 } from "@cardano-sdk/input-selection";
1735
+ var MAX_U64 = 18446744073709551615n;
1736
1736
  var mergeValue = (a, b) => {
1737
1737
  const merged = new Map(a);
1738
1738
  b.forEach((quantity, unit) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshsdk/transaction",
3
- "version": "1.9.0-beta.86",
3
+ "version": "1.9.0-beta.89",
4
4
  "description": "Transactions - https://meshjs.dev/apis/transaction",
5
5
  "main": "./dist/index.cjs",
6
6
  "browser": "./dist/index.js",
@@ -35,8 +35,8 @@
35
35
  "typescript": "^5.3.3"
36
36
  },
37
37
  "dependencies": {
38
- "@meshsdk/common": "1.9.0-beta.86",
39
- "@meshsdk/core-cst": "1.9.0-beta.86",
38
+ "@meshsdk/common": "1.9.0-beta.89",
39
+ "@meshsdk/core-cst": "1.9.0-beta.89",
40
40
  "@cardano-sdk/core": "^0.45.5",
41
41
  "@cardano-sdk/util": "^0.15.5",
42
42
  "@cardano-sdk/input-selection": "^0.13.33",