ssv-keys
Version:
CLI Tool for splitting a validator key into a predefined threshold of shares via Shamir-Secret-Sharing (SSS), and encrypt them with a set of operator keys.
21 lines (17 loc) • 515 B
text/typescript
import { BaseCommand } from "./BaseCommand";
import { KeySharesAction } from "./actions/KeySharesAction";
export class SSVKeysCommand extends BaseCommand {
/**
* List of all supported command actions.
* @protected
*/
protected actions = [KeySharesAction];
protected useAction = "shares";
/**
* Add more specific help.
*/
constructor(interactive = false, options = undefined) {
super(interactive, options);
this.subParserOptions.help += 'Example: "pnpm cli shares --help"';
}
}