@fuel-ts/account 0.0.0-pr-2017-20240411102002 → 0.0.0-pr-2017-20240411102836
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 +7 -17
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -2
- package/dist/index.mjs.map +1 -1
- package/dist/predicate/predicate.d.ts +1 -0
- 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 +6 -17
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +4 -2
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +4 -2
- package/dist/test-utils.mjs.map +1 -1
- package/package.json +16 -16
package/dist/test-utils.js
CHANGED
@@ -1858,7 +1858,8 @@ var BaseTransactionRequest = class {
|
|
1858
1858
|
assetId,
|
1859
1859
|
txPointer: "0x00000000000000000000000000000000",
|
1860
1860
|
witnessIndex,
|
1861
|
-
predicate: predicate?.bytes
|
1861
|
+
predicate: predicate?.bytes,
|
1862
|
+
predicateData: predicate?.predicateDataBytes
|
1862
1863
|
};
|
1863
1864
|
this.pushInput(input);
|
1864
1865
|
this.addChangeOutput(owner, assetId);
|
@@ -1890,7 +1891,8 @@ var BaseTransactionRequest = class {
|
|
1890
1891
|
recipient: recipient.toB256(),
|
1891
1892
|
amount,
|
1892
1893
|
witnessIndex,
|
1893
|
-
predicate: predicate?.bytes
|
1894
|
+
predicate: predicate?.bytes,
|
1895
|
+
predicateData: predicate?.predicateDataBytes
|
1894
1896
|
};
|
1895
1897
|
this.pushInput(input);
|
1896
1898
|
this.addChangeOutput(recipient, assetId);
|