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.
49 lines (40 loc) • 985 B
Markdown
# Release v0.0.21 - 2023-05-19
This release introduces new feature to generate BLS signatures with a validator's private key for improved security.
## Breaking changes
```code
import { SSVKeys, KeyShares } from 'ssv-keys';
const ssvKeys = new SSVKeys();
const keyShares = new KeyShares();
const { privateKey, publicKey } = await ssvKeys.extractKeys(keystore, keystorePassword);
...
const payload = keyShares.buildPayload({
publicKey,
operators,
encryptedShares
}, {
ownerAddress: ...validator owner address...,
ownerNonce: ...nonce of the owner...,
privateKey
});
await keyShares.validateSingleShares(payload.shares, {
ownerAddress: ...validator owner address...,
ownerNonce: ...nonce of the owner...,
publicKey,
});
```
### KeyShares Json v4
```code
version: 'v4',
data: {
publicKey,
operators: [
{
id: ...,
operatorKey: '...',
},
],
},
payload: {
...
}
```