@lodestar/utils 1.2.0 → 1.3.0-dev.649a5871fc

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.
@@ -1,6 +1,6 @@
1
1
  import { EpochSlotOpts } from "./interface.js";
2
2
  /**
3
- * Formats time as: `EPOCH/SLOT_INDEX SECONDS.MILISECONDS
3
+ * Formats time as: `EPOCH/SLOT_INDEX SECONDS.MILLISECONDS
4
4
  */
5
5
  export declare function formatEpochSlotTime(opts: EpochSlotOpts, now?: number): string;
6
6
  //# sourceMappingURL=util.d.ts.map
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Formats time as: `EPOCH/SLOT_INDEX SECONDS.MILISECONDS
2
+ * Formats time as: `EPOCH/SLOT_INDEX SECONDS.MILLISECONDS
3
3
  */
4
4
  export function formatEpochSlotTime(opts, now = Date.now()) {
5
5
  const nowSec = now / 1000;
package/lib/retry.d.ts CHANGED
@@ -10,7 +10,7 @@ export declare type RetryOptions = {
10
10
  */
11
11
  shouldRetry?: (lastError: Error) => boolean;
12
12
  /**
13
- * Miliseconds to wait before retrying again
13
+ * Milliseconds to wait before retrying again
14
14
  */
15
15
  retryDelay?: number;
16
16
  };
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "bugs": {
12
12
  "url": "https://github.com/ChainSafe/lodestar/issues"
13
13
  },
14
- "version": "1.2.0",
14
+ "version": "1.3.0-dev.649a5871fc",
15
15
  "type": "module",
16
16
  "exports": "./lib/index.js",
17
17
  "files": [
@@ -57,5 +57,5 @@
57
57
  "beacon",
58
58
  "blockchain"
59
59
  ],
60
- "gitHead": "73c2afe641ac7bca9179596867661bd0ba39c10e"
60
+ "gitHead": "7ac4825fb0eaf8903f102b9c3e23921a5656453e"
61
61
  }