ssv-keys
Version:
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.
23 lines (19 loc) • 521 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: "yarn cli shares --help"'
}
}