@lodestar/utils 1.23.0-rc.6 → 1.24.0-dev.6039f58b8d

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,4 +1,4 @@
1
- import { toHex as browserToHex, toRootHex as browserToRootHex, fromHex as browserFromHex, toPubkeyHex as browserToPubkeyHex } from "./browser.js";
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;
@@ -1,5 +1,5 @@
1
- import { toHex as browserToHex, toRootHex as browserToRootHex, fromHex as browserFromHex, toPubkeyHex as browserToPubkeyHex, } from "./browser.js";
2
- import { toHex as nodeToHex, toRootHex as nodeToRootHex, fromHex as nodeFromHex, toPubkeyHex as nodeToPubkeyHex, } from "./nodejs.js";
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;
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/bytes/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,IAAI,YAAY,EACrB,SAAS,IAAI,gBAAgB,EAC7B,OAAO,IAAI,cAAc,EACzB,WAAW,IAAI,kBAAkB,GAClC,MAAM,cAAc,CAAC;AACtB,OAAO,EACL,KAAK,IAAI,SAAS,EAClB,SAAS,IAAI,aAAa,EAC1B,OAAO,IAAI,WAAW,EACtB,WAAW,IAAI,eAAe,GAC/B,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"}
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
@@ -1,4 +1,4 @@
1
- import { toBufferLE, toBigIntLE, toBufferBE, toBigIntBE } from "bigint-buffer";
1
+ import { toBigIntBE, toBigIntLE, toBufferBE, toBufferLE } from "bigint-buffer";
2
2
  const hexByByte = [];
3
3
  /**
4
4
  * @deprecated Use toHex() instead.
package/lib/command.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { Options, Argv } from "yargs";
1
+ import type { Argv, Options } from "yargs";
2
2
  export interface CliExample {
3
3
  command: string;
4
4
  title?: string;
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.23.0-rc.6",
14
+ "version": "1.24.0-dev.6039f58b8d",
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": "67aa9514c5229ddfa2435f9a011571c8a1d9ea72"
59
+ "gitHead": "f118b0e482c26645f8ef06dea30d6dc3a803eacc"
60
60
  }