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.
24 lines • 803 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SSVKeysCommand = void 0;
const BaseCommand_1 = require("./BaseCommand");
const KeySharesAction_1 = require("./actions/KeySharesAction");
class SSVKeysCommand extends BaseCommand_1.BaseCommand {
/**
* Add more specific help.
*/
constructor(interactive = false, options = undefined) {
super(interactive, options);
/**
* List of all supported command actions.
* @protected
*/
this.actions = [
KeySharesAction_1.KeySharesAction,
];
this.useAction = 'shares';
this.subParserOptions.help += 'Example: "yarn cli shares --help"';
}
}
exports.SSVKeysCommand = SSVKeysCommand;
//# sourceMappingURL=SSVKeysCommand.js.map