@lodestar/logger 1.35.0-dev.fcf8d024ea → 1.35.0-dev.fd1dac853d

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.
package/lib/browser.d.ts CHANGED
@@ -16,7 +16,7 @@ export type BrowserLoggerOpts = {
16
16
  * timestampFormat = {
17
17
  * format: TimestampFormatCode.EpochSlot,
18
18
  * genesisTime: args.logFormatGenesisTime,
19
- * secondsPerSlot: config.SECONDS_PER_SLOT,
19
+ * secondsPerSlot: config.SLOT_DURATION_MS / 1000,
20
20
  * slotsPerEpoch: SLOTS_PER_EPOCH,
21
21
  * }
22
22
  * ```
package/lib/node.d.ts CHANGED
@@ -36,7 +36,7 @@ export type LoggerNodeOpts = {
36
36
  * timestampFormat = {
37
37
  * format: TimestampFormatCode.EpochSlot,
38
38
  * genesisTime: args.logFormatGenesisTime,
39
- * secondsPerSlot: config.SECONDS_PER_SLOT,
39
+ * secondsPerSlot: config.SLOT_DURATION_MS / 1000,
40
40
  * slotsPerEpoch: SLOTS_PER_EPOCH,
41
41
  * }
42
42
  * ```
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.35.0-dev.fcf8d024ea",
14
+ "version": "1.35.0-dev.fd1dac853d",
15
15
  "type": "module",
16
16
  "exports": {
17
17
  ".": {
@@ -66,14 +66,14 @@
66
66
  },
67
67
  "types": "lib/index.d.ts",
68
68
  "dependencies": {
69
- "@lodestar/utils": "1.35.0-dev.fcf8d024ea",
69
+ "@lodestar/utils": "1.35.0-dev.fd1dac853d",
70
70
  "winston": "^3.8.2",
71
71
  "winston-daily-rotate-file": "^4.7.1",
72
72
  "winston-transport": "^4.5.0"
73
73
  },
74
74
  "devDependencies": {
75
75
  "@chainsafe/threads": "^1.11.3",
76
- "@lodestar/test-utils": "1.35.0-dev.fcf8d024ea",
76
+ "@lodestar/test-utils": "1.35.0-dev.fd1dac853d",
77
77
  "@types/triple-beam": "^1.3.2",
78
78
  "triple-beam": "^1.3.0"
79
79
  },
@@ -83,5 +83,5 @@
83
83
  "beacon",
84
84
  "blockchain"
85
85
  ],
86
- "gitHead": "d72abda1a1607ce062febfcfc4528b9e9848c288"
86
+ "gitHead": "f06d12a7e66a85186ef97b1f6da57c22536e4a18"
87
87
  }
package/src/browser.ts CHANGED
@@ -20,7 +20,7 @@ export type BrowserLoggerOpts = {
20
20
  * timestampFormat = {
21
21
  * format: TimestampFormatCode.EpochSlot,
22
22
  * genesisTime: args.logFormatGenesisTime,
23
- * secondsPerSlot: config.SECONDS_PER_SLOT,
23
+ * secondsPerSlot: config.SLOT_DURATION_MS / 1000,
24
24
  * slotsPerEpoch: SLOTS_PER_EPOCH,
25
25
  * }
26
26
  * ```
package/src/node.ts CHANGED
@@ -44,7 +44,7 @@ export type LoggerNodeOpts = {
44
44
  * timestampFormat = {
45
45
  * format: TimestampFormatCode.EpochSlot,
46
46
  * genesisTime: args.logFormatGenesisTime,
47
- * secondsPerSlot: config.SECONDS_PER_SLOT,
47
+ * secondsPerSlot: config.SLOT_DURATION_MS / 1000,
48
48
  * slotsPerEpoch: SLOTS_PER_EPOCH,
49
49
  * }
50
50
  * ```