@fuel-ts/account 0.0.0-rc-1356-20240520140225 → 0.0.0-rc-2143-20240520152005

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.

@@ -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
  }
@@ -38334,6 +38327,15 @@ ${MessageCoinFragmentDoc}`;
38334
38327
  return normalize2(clone_default(root));
38335
38328
  }
38336
38329
 
38330
+ // src/providers/utils/sleep.ts
38331
+ function sleep(time) {
38332
+ return new Promise((resolve) => {
38333
+ setTimeout(() => {
38334
+ resolve(true);
38335
+ }, time);
38336
+ });
38337
+ }
38338
+
38337
38339
  // src/providers/utils/extract-tx-error.ts
38338
38340
  var assemblePanicError = (statusReason) => {
38339
38341
  let errorMessage = `The transaction reverted with reason: "${statusReason}".`;