@lodestar/flare
Version:
Beacon chain debugging tool
9 lines (7 loc) • 309 B
text/typescript
import {CliCommand} from "@lodestar/utils";
import {selfSlashAttester} from "./selfSlashAttester.js";
import {selfSlashProposer} from "./selfSlashProposer.js";
export const cmds: Required<CliCommand<Record<never, never>, Record<never, never>>>["subcommands"] = [
selfSlashProposer,
selfSlashAttester,
];