@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.mjs CHANGED
@@ -1924,8 +1924,7 @@ var BaseTransactionRequest = class {
1924
1924
  assetId,
1925
1925
  txPointer: "0x00000000000000000000000000000000",
1926
1926
  witnessIndex,
1927
- predicate: predicate?.bytes,
1928
- predicateData: predicate?.predicateDataBytes
1927
+ predicate: predicate?.bytes
1929
1928
  };
1930
1929
  this.pushInput(input);
1931
1930
  this.addChangeOutput(owner, assetId);
@@ -1957,8 +1956,7 @@ var BaseTransactionRequest = class {
1957
1956
  recipient: recipient.toB256(),
1958
1957
  amount,
1959
1958
  witnessIndex,
1960
- predicate: predicate?.bytes,
1961
- predicateData: predicate?.predicateDataBytes
1959
+ predicate: predicate?.bytes
1962
1960
  };
1963
1961
  this.pushInput(input);
1964
1962
  this.addChangeOutput(recipient, assetId);
@@ -8722,7 +8720,6 @@ var getPredicateRoot = (bytecode) => {
8722
8720
  // src/predicate/predicate.ts
8723
8721
  var Predicate = class extends Account {
8724
8722
  bytes;
8725
- predicateDataBytes = Uint8Array.from([]);
8726
8723
  predicateData = [];
8727
8724
  interface;
8728
8725
  /**