@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.js CHANGED
@@ -2054,8 +2054,7 @@ var BaseTransactionRequest = class {
2054
2054
  assetId,
2055
2055
  txPointer: "0x00000000000000000000000000000000",
2056
2056
  witnessIndex,
2057
- predicate: predicate?.bytes,
2058
- predicateData: predicate?.predicateDataBytes
2057
+ predicate: predicate?.bytes
2059
2058
  };
2060
2059
  this.pushInput(input);
2061
2060
  this.addChangeOutput(owner, assetId);
@@ -2087,8 +2086,7 @@ var BaseTransactionRequest = class {
2087
2086
  recipient: recipient.toB256(),
2088
2087
  amount,
2089
2088
  witnessIndex,
2090
- predicate: predicate?.bytes,
2091
- predicateData: predicate?.predicateDataBytes
2089
+ predicate: predicate?.bytes
2092
2090
  };
2093
2091
  this.pushInput(input);
2094
2092
  this.addChangeOutput(recipient, assetId);
@@ -8816,7 +8814,6 @@ var getPredicateRoot = (bytecode) => {
8816
8814
  // src/predicate/predicate.ts
8817
8815
  var Predicate = class extends Account {
8818
8816
  bytes;
8819
- predicateDataBytes = Uint8Array.from([]);
8820
8817
  predicateData = [];
8821
8818
  interface;
8822
8819
  /**