import {CliCommand} from "@lodestar/utils"; import {GlobalArgs} from "../../options/index.js"; import {lightclientHandler} from "./handler.js"; import {ILightClientArgs, lightclientOptions} from "./options.js"; export const lightclient: CliCommand = { command: "lightclient", describe: "Run lightclient", docsFolder: "libraries/lightclient-prover", examples: [ { command: "lightclient --network hoodi", description: "Run lightclient with hoodi network", }, ], options: lightclientOptions, handler: lightclientHandler, };