UNPKG

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.

10 lines (9 loc) 552 B
export { SSVKeys } from './lib/SSVKeys'; export { EncryptShare } from './lib/Encryption/Encryption'; export { default as Threshold } from './lib/Threshold/Threshold'; export { ISharesKeyPairs, IShares } from './lib/Threshold/Threshold'; export { default as EthereumKeyStore } from './lib/EthereumKeyStore'; export { KeySharesItem } from './lib/KeyShares/KeySharesItem'; export { KeyShares } from './lib/KeyShares/KeyShares'; export { default as Encryption } from './lib/Encryption/Encryption'; export { SSVKeysException } from './lib/exceptions/base';