@fuel-ts/account 0.0.0-rc-2034-20240410132048 → 0.0.0-rc-2034-20240410133013

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
@@ -2055,8 +2055,7 @@ var BaseTransactionRequest = class {
2055
2055
  assetId,
2056
2056
  txPointer: "0x00000000000000000000000000000000",
2057
2057
  witnessIndex,
2058
- predicate: predicate?.bytes,
2059
- predicateData: predicate?.predicateDataBytes
2058
+ predicate: predicate?.bytes
2060
2059
  };
2061
2060
  this.pushInput(input);
2062
2061
  this.addChangeOutput(owner, assetId);
@@ -2088,8 +2087,7 @@ var BaseTransactionRequest = class {
2088
2087
  recipient: recipient.toB256(),
2089
2088
  amount,
2090
2089
  witnessIndex,
2091
- predicate: predicate?.bytes,
2092
- predicateData: predicate?.predicateDataBytes
2090
+ predicate: predicate?.bytes
2093
2091
  };
2094
2092
  this.pushInput(input);
2095
2093
  this.addChangeOutput(recipient, assetId);
@@ -8839,7 +8837,6 @@ var getPredicateRoot = (bytecode) => {
8839
8837
  // src/predicate/predicate.ts
8840
8838
  var Predicate = class extends Account {
8841
8839
  bytes;
8842
- predicateDataBytes = Uint8Array.from([]);
8843
8840
  predicateData = [];
8844
8841
  interface;
8845
8842
  /**