@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.global.js +2 -5
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +2 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -5
- package/dist/index.mjs.map +1 -1
- package/dist/predicate/predicate.d.ts +0 -1
- package/dist/predicate/predicate.d.ts.map +1 -1
- package/dist/providers/transaction-request/transaction-request.d.ts.map +1 -1
- package/dist/test-utils.global.js +2 -4
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +2 -4
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +2 -4
- package/dist/test-utils.mjs.map +1 -1
- package/package.json +16 -16
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
|
/**
|