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.
14 lines • 495 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SSVKeysException = void 0;
class SSVKeysException extends Error {
constructor(message) {
super(message);
this.name = this.constructor.name;
Error.captureStackTrace(this, this.constructor);
this.trace = this.stack;
this.stack = `${this.name}: ${this.message}`; // Customizing stack
}
}
exports.SSVKeysException = SSVKeysException;
//# sourceMappingURL=base.js.map