@lodestar/prover
Version:
A Typescript implementation of the Ethereum Consensus light client
19 lines (17 loc) • 672 B
text/typescript
import {CliCommand} from "@lodestar/utils";
import {GlobalArgs} from "../../options.js";
import {proverProxyStartHandler} from "./handler.js";
import {StartArgs, startOptions} from "./options.js";
export const proverProxyStartCommand: CliCommand<StartArgs, GlobalArgs> = {
command: "proxy",
describe: "Start proxy server",
examples: [
{
command:
"start --network sepolia --execution-rpc https://lodestar-sepoliarpc.chainsafe.io --mode rest --beacon-rpc https://lodestar-sepolia.chainsafe.io",
description: "Start a proxy server and connect to the sepolia testnet",
},
],
options: startOptions,
handler: proverProxyStartHandler,
};