UNPKG

@lodestar/prover

Version:

A Typescript implementation of the Ethereum Consensus light client

15 lines 597 B
import { proverProxyStartHandler } from "./handler.js"; import { startOptions } from "./options.js"; export const proverProxyStartCommand = { 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, }; //# sourceMappingURL=index.js.map