@chainsafe/lodestar 1.24.0-dev.64eb0153dd → 1.24.0-dev.84e0699301
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/.git-data.json
CHANGED
|
@@ -7,6 +7,7 @@ type GlobalSingleArgs = {
|
|
|
7
7
|
paramsFile?: string;
|
|
8
8
|
preset: string;
|
|
9
9
|
presetFile?: string;
|
|
10
|
+
rcConfig?: string;
|
|
10
11
|
};
|
|
11
12
|
export declare const defaultNetwork: NetworkName;
|
|
12
13
|
export declare const rcConfigOption: [string, string, (configPath: string) => Record<string, unknown>];
|
|
@@ -22,6 +23,7 @@ export declare const globalOptions: {
|
|
|
22
23
|
demandOption: true;
|
|
23
24
|
});
|
|
24
25
|
presetFile: import("@lodestar/utils").CliOptionDefinition<string | undefined>;
|
|
26
|
+
rcConfig: import("@lodestar/utils").CliOptionDefinition<string | undefined>;
|
|
25
27
|
};
|
|
26
28
|
export {};
|
|
27
29
|
//# sourceMappingURL=globalOptions.d.ts.map
|
|
@@ -29,10 +29,14 @@ const globalSingleOptions = {
|
|
|
29
29
|
description: "Preset configuration file to override the active preset with custom values",
|
|
30
30
|
type: "string",
|
|
31
31
|
},
|
|
32
|
+
rcConfig: {
|
|
33
|
+
description: "RC file to supplement command line args, accepted formats: .yml, .yaml, .json",
|
|
34
|
+
type: "string",
|
|
35
|
+
},
|
|
32
36
|
};
|
|
33
37
|
export const rcConfigOption = [
|
|
34
38
|
"rcConfig",
|
|
35
|
-
|
|
39
|
+
globalSingleOptions.rcConfig.description,
|
|
36
40
|
(configPath) => readFile(configPath, ["json", "yml", "yaml"]),
|
|
37
41
|
];
|
|
38
42
|
export const globalOptions = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"globalOptions.js","sourceRoot":"","sources":["../../src/options/globalOptions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAC,MAAM,kBAAkB,CAAC;AAE/C,OAAO,EAAc,YAAY,EAAC,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAC,QAAQ,EAAC,MAAM,kBAAkB,CAAC;AAC1C,OAAO,EAAc,aAAa,EAAC,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"globalOptions.js","sourceRoot":"","sources":["../../src/options/globalOptions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAC,MAAM,kBAAkB,CAAC;AAE/C,OAAO,EAAc,YAAY,EAAC,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAC,QAAQ,EAAC,MAAM,kBAAkB,CAAC;AAC1C,OAAO,EAAc,aAAa,EAAC,MAAM,oBAAoB,CAAC;AAW9D,MAAM,CAAC,MAAM,cAAc,GAAgB,SAAS,CAAC;AAErD,MAAM,mBAAmB,GAAwC;IAC/D,OAAO,EAAE;QACP,WAAW,EAAE,8BAA8B;QAC3C,IAAI,EAAE,QAAQ;KACf;IAED,OAAO,EAAE;QACP,WAAW,EAAE,sDAAsD;QACnE,IAAI,EAAE,QAAQ;QACd,kBAAkB,EAAE,cAAc;QAClC,OAAO,EAAE,YAAY;KACtB;IAED,UAAU,EAAE;QACV,WAAW,EAAE,4BAA4B;QACzC,IAAI,EAAE,QAAQ;KACf;IAED,uDAAuD;IACvD,MAAM,EAAE;QACN,MAAM,EAAE,IAAI;QACZ,IAAI,EAAE,QAAQ;QACd,OAAO,EAAE,aAAa;KACvB;IAED,UAAU,EAAE;QACV,MAAM,EAAE,IAAI;QACZ,WAAW,EAAE,4EAA4E;QACzF,IAAI,EAAE,QAAQ;KACf;IAED,QAAQ,EAAE;QACR,WAAW,EAAE,+EAA+E;QAC5F,IAAI,EAAE,QAAQ;KACf;CACF,CAAC;AAEF,MAAM,CAAC,MAAM,cAAc,GAAsE;IAC/F,UAAU;IACV,mBAAmB,CAAC,QAAQ,CAAC,WAAqB;IAClD,CAAC,UAAkB,EAA2B,EAAE,CAAC,QAAQ,CAAC,UAAU,EAAE,CAAC,MAAM,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;CAC/F,CAAC;AAIF,MAAM,CAAC,MAAM,aAAa,GAAG;IAC3B,GAAG,mBAAmB;IACtB,GAAG,aAAa;CACjB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chainsafe/lodestar",
|
|
3
|
-
"version": "1.24.0-dev.
|
|
3
|
+
"version": "1.24.0-dev.84e0699301",
|
|
4
4
|
"description": "Command line interface for lodestar",
|
|
5
5
|
"author": "ChainSafe Systems",
|
|
6
6
|
"license": "LGPL-3.0",
|
|
@@ -62,17 +62,17 @@
|
|
|
62
62
|
"@libp2p/crypto": "^4.1.0",
|
|
63
63
|
"@libp2p/peer-id": "^4.1.0",
|
|
64
64
|
"@libp2p/peer-id-factory": "^4.1.0",
|
|
65
|
-
"@lodestar/api": "1.24.0-dev.
|
|
66
|
-
"@lodestar/beacon-node": "1.24.0-dev.
|
|
67
|
-
"@lodestar/config": "1.24.0-dev.
|
|
68
|
-
"@lodestar/db": "1.24.0-dev.
|
|
69
|
-
"@lodestar/light-client": "1.24.0-dev.
|
|
70
|
-
"@lodestar/logger": "1.24.0-dev.
|
|
71
|
-
"@lodestar/params": "1.24.0-dev.
|
|
72
|
-
"@lodestar/state-transition": "1.24.0-dev.
|
|
73
|
-
"@lodestar/types": "1.24.0-dev.
|
|
74
|
-
"@lodestar/utils": "1.24.0-dev.
|
|
75
|
-
"@lodestar/validator": "1.24.0-dev.
|
|
65
|
+
"@lodestar/api": "1.24.0-dev.84e0699301",
|
|
66
|
+
"@lodestar/beacon-node": "1.24.0-dev.84e0699301",
|
|
67
|
+
"@lodestar/config": "1.24.0-dev.84e0699301",
|
|
68
|
+
"@lodestar/db": "1.24.0-dev.84e0699301",
|
|
69
|
+
"@lodestar/light-client": "1.24.0-dev.84e0699301",
|
|
70
|
+
"@lodestar/logger": "1.24.0-dev.84e0699301",
|
|
71
|
+
"@lodestar/params": "1.24.0-dev.84e0699301",
|
|
72
|
+
"@lodestar/state-transition": "1.24.0-dev.84e0699301",
|
|
73
|
+
"@lodestar/types": "1.24.0-dev.84e0699301",
|
|
74
|
+
"@lodestar/utils": "1.24.0-dev.84e0699301",
|
|
75
|
+
"@lodestar/validator": "1.24.0-dev.84e0699301",
|
|
76
76
|
"@multiformats/multiaddr": "^12.1.3",
|
|
77
77
|
"deepmerge": "^4.3.1",
|
|
78
78
|
"ethers": "^6.7.0",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"yargs": "^17.7.1"
|
|
89
89
|
},
|
|
90
90
|
"devDependencies": {
|
|
91
|
-
"@lodestar/test-utils": "1.24.0-dev.
|
|
91
|
+
"@lodestar/test-utils": "1.24.0-dev.84e0699301",
|
|
92
92
|
"@types/debug": "^4.1.7",
|
|
93
93
|
"@types/got": "^9.6.12",
|
|
94
94
|
"@types/inquirer": "^9.0.3",
|
|
@@ -96,5 +96,5 @@
|
|
|
96
96
|
"@types/yargs": "^17.0.24",
|
|
97
97
|
"fastify": "^5.0.0"
|
|
98
98
|
},
|
|
99
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "7a0fc66fff564b26abb064017240630375d0b6af"
|
|
100
100
|
}
|