import {CliCommandOptions} from "@lodestar/utils"; import {IValidatorCliArgs, validatorOptions} from "../options.js"; export type ISlashingProtectionArgs = Pick & { force?: boolean; }; export const slashingProtectionOptions: CliCommandOptions = { beaconNodes: validatorOptions.beaconNodes, force: { description: "If `genesisValidatorsRoot` can't be fetched from the Beacon node, use a zero hash", type: "boolean", }, };