@fuel-ts/account 0.0.0-pr-2017-20240411142607 → 0.0.0-pr-2044-20240411144204
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 +9 -20
- 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 +8 -20
- 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.mjs
CHANGED
@@ -1844,7 +1844,8 @@ var BaseTransactionRequest = class {
|
|
1844
1844
|
assetId,
|
1845
1845
|
txPointer: "0x00000000000000000000000000000000",
|
1846
1846
|
witnessIndex,
|
1847
|
-
predicate: predicate?.bytes
|
1847
|
+
predicate: predicate?.bytes,
|
1848
|
+
predicateData: predicate?.predicateDataBytes
|
1848
1849
|
};
|
1849
1850
|
this.pushInput(input);
|
1850
1851
|
this.addChangeOutput(owner, assetId);
|
@@ -1876,7 +1877,8 @@ var BaseTransactionRequest = class {
|
|
1876
1877
|
recipient: recipient.toB256(),
|
1877
1878
|
amount,
|
1878
1879
|
witnessIndex,
|
1879
|
-
predicate: predicate?.bytes
|
1880
|
+
predicate: predicate?.bytes,
|
1881
|
+
predicateData: predicate?.predicateDataBytes
|
1880
1882
|
};
|
1881
1883
|
this.pushInput(input);
|
1882
1884
|
this.addChangeOutput(recipient, assetId);
|