@fuel-ts/account 0.0.0-rc-1832-20240415161726 → 0.0.0-rc-2040-20240415161844

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.

Potentially problematic release.


This version of @fuel-ts/account might be problematic. Click here for more details.

package/dist/index.mjs CHANGED
@@ -1923,8 +1923,7 @@ var BaseTransactionRequest = class {
1923
1923
  assetId,
1924
1924
  txPointer: "0x00000000000000000000000000000000",
1925
1925
  witnessIndex,
1926
- predicate: predicate?.bytes,
1927
- predicateData: predicate?.predicateDataBytes
1926
+ predicate: predicate?.bytes
1928
1927
  };
1929
1928
  this.pushInput(input);
1930
1929
  this.addChangeOutput(owner, assetId);
@@ -1956,8 +1955,7 @@ var BaseTransactionRequest = class {
1956
1955
  recipient: recipient.toB256(),
1957
1956
  amount,
1958
1957
  witnessIndex,
1959
- predicate: predicate?.bytes,
1960
- predicateData: predicate?.predicateDataBytes
1958
+ predicate: predicate?.bytes
1961
1959
  };
1962
1960
  this.pushInput(input);
1963
1961
  this.addChangeOutput(recipient, assetId);
@@ -8699,7 +8697,6 @@ var getPredicateRoot = (bytecode) => {
8699
8697
  // src/predicate/predicate.ts
8700
8698
  var Predicate = class extends Account {
8701
8699
  bytes;
8702
- predicateDataBytes = Uint8Array.from([]);
8703
8700
  predicateData = [];
8704
8701
  interface;
8705
8702
  /**