@lodestar/utils 1.23.0-rc.6 → 1.24.0-dev.0c1ad93f89
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/bytes/index.d.ts +1 -1
- package/lib/bytes/index.js +2 -2
- package/lib/bytes/index.js.map +1 -1
- package/lib/bytes.js +1 -1
- package/lib/command.d.ts +1 -1
- package/package.json +2 -2
package/lib/bytes/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { fromHex as browserFromHex, toHex as browserToHex, toPubkeyHex as browserToPubkeyHex, toRootHex as browserToRootHex } from "./browser.js";
|
|
2
2
|
declare let toHex: typeof browserToHex;
|
|
3
3
|
declare let toRootHex: typeof browserToRootHex;
|
|
4
4
|
declare let toPubkeyHex: typeof browserToPubkeyHex;
|
package/lib/bytes/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { fromHex as browserFromHex, toHex as browserToHex, toPubkeyHex as browserToPubkeyHex, toRootHex as browserToRootHex, } from "./browser.js";
|
|
2
|
+
import { fromHex as nodeFromHex, toHex as nodeToHex, toPubkeyHex as nodeToPubkeyHex, toRootHex as nodeToRootHex, } from "./nodejs.js";
|
|
3
3
|
let toHex = browserToHex;
|
|
4
4
|
let toRootHex = browserToRootHex;
|
|
5
5
|
let toPubkeyHex = browserToPubkeyHex;
|
package/lib/bytes/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/bytes/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/bytes/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,OAAO,IAAI,cAAc,EACzB,KAAK,IAAI,YAAY,EACrB,WAAW,IAAI,kBAAkB,EACjC,SAAS,IAAI,gBAAgB,GAC9B,MAAM,cAAc,CAAC;AACtB,OAAO,EACL,OAAO,IAAI,WAAW,EACtB,KAAK,IAAI,SAAS,EAClB,WAAW,IAAI,eAAe,EAC9B,SAAS,IAAI,aAAa,GAC3B,MAAM,aAAa,CAAC;AAErB,IAAI,KAAK,GAAG,YAAY,CAAC;AACzB,IAAI,SAAS,GAAG,gBAAgB,CAAC;AACjC,IAAI,WAAW,GAAG,kBAAkB,CAAC;AACrC,IAAI,OAAO,GAAG,cAAc,CAAC;AAE7B,IAAI,OAAO,MAAM,KAAK,WAAW,EAAE,CAAC;IAClC,KAAK,GAAG,SAAS,CAAC;IAClB,SAAS,GAAG,aAAa,CAAC;IAC1B,WAAW,GAAG,eAAe,CAAC;IAC9B,OAAO,GAAG,WAAW,CAAC;AACxB,CAAC;AAED,OAAO,EAAC,KAAK,EAAE,SAAS,EAAE,WAAW,EAAE,OAAO,EAAC,CAAC"}
|
package/lib/bytes.js
CHANGED
package/lib/command.d.ts
CHANGED
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.
|
|
14
|
+
"version": "1.24.0-dev.0c1ad93f89",
|
|
15
15
|
"type": "module",
|
|
16
16
|
"exports": "./lib/index.js",
|
|
17
17
|
"files": [
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"beacon",
|
|
57
57
|
"blockchain"
|
|
58
58
|
],
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "4304ca7372b210ee8f41a3699f21749ccd73803e"
|
|
60
60
|
}
|