@fuel-ts/account 0.0.0-rc-1356-20240515091838 → 0.0.0-rc-2143-20240515092103
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 -7
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +125 -115
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -1
- package/dist/index.mjs.map +1 -1
- package/dist/providers/utils/auto-retry-fetch.d.ts.map +1 -1
- package/dist/providers/utils/index.d.ts +1 -0
- package/dist/providers/utils/index.d.ts.map +1 -1
- package/dist/providers/utils/sleep.d.ts +3 -0
- package/dist/providers/utils/sleep.d.ts.map +1 -0
- package/dist/test-utils/index.d.ts +0 -4
- package/dist/test-utils/index.d.ts.map +1 -1
- package/dist/test-utils/launchNode.d.ts +4 -9
- package/dist/test-utils/launchNode.d.ts.map +1 -1
- package/dist/test-utils.global.js +2409 -508
- package/dist/test-utils.global.js.map +1 -1
- package/dist/test-utils.js +169 -402
- package/dist/test-utils.js.map +1 -1
- package/dist/test-utils.mjs +67 -296
- package/dist/test-utils.mjs.map +1 -1
- package/package.json +15 -16
- package/dist/test-utils/asset-id.d.ts +0 -8
- package/dist/test-utils/asset-id.d.ts.map +0 -1
- package/dist/test-utils/setup-test-provider-and-wallets.d.ts +0 -33
- package/dist/test-utils/setup-test-provider-and-wallets.d.ts.map +0 -1
- package/dist/test-utils/test-message.d.ts +0 -28
- package/dist/test-utils/test-message.d.ts.map +0 -1
- package/dist/test-utils/wallet-config.d.ts +0 -55
- package/dist/test-utils/wallet-config.d.ts.map +0 -1
package/dist/index.global.js
CHANGED
@@ -29985,13 +29985,6 @@ This unreleased fuel-core build may include features and updates not yet support
|
|
29985
29985
|
};
|
29986
29986
|
var DateTime = _DateTime;
|
29987
29987
|
__publicField3(DateTime, "TAI64_NULL", "");
|
29988
|
-
function sleep(time) {
|
29989
|
-
return new Promise((resolve) => {
|
29990
|
-
setTimeout(() => {
|
29991
|
-
resolve(true);
|
29992
|
-
}, time);
|
29993
|
-
});
|
29994
|
-
}
|
29995
29988
|
function isDefined(value) {
|
29996
29989
|
return value !== void 0;
|
29997
29990
|
}
|
@@ -38306,6 +38299,15 @@ ${MessageCoinFragmentDoc}`;
|
|
38306
38299
|
return normalize2(clone_default(root));
|
38307
38300
|
}
|
38308
38301
|
|
38302
|
+
// src/providers/utils/sleep.ts
|
38303
|
+
function sleep(time) {
|
38304
|
+
return new Promise((resolve) => {
|
38305
|
+
setTimeout(() => {
|
38306
|
+
resolve(true);
|
38307
|
+
}, time);
|
38308
|
+
});
|
38309
|
+
}
|
38310
|
+
|
38309
38311
|
// src/providers/utils/extract-tx-error.ts
|
38310
38312
|
var assemblePanicError = (status) => {
|
38311
38313
|
let errorMessage = `The transaction reverted with reason: "${status.reason}".`;
|