Key management
This page explains the process for periodically substituting signers, swapping keyshares, and other processes the network uses to manage keys.
Key reshare
The idea here is that when validators join the network they may be selected to the signing comittee. A smaller randomly selected group of validators that is responsible for holding the parent network key. Every session, which consists of 2400 blocks (equivalent to 4 hours), the chain will notify the TSSs (Threshold Signature Servers) that a reshare is taking place. The chain will also reandomly select a validator to join the netowrk and remove the oldest signer from the comittee.
The selected TSSs will connect to each other and execute the key reshare protocol on the parent network key, generating a new set of key shares. This protocol is similar to the distributed key generation protocol used during jump starting the network. Upon receiving a new key share, the recipients will hold the new key share in a secondary slot and rotate them to the current parent network key when everyone in the signing group has agreed that the rotation was succeful. All previous key shares will be incompatible with the refreshed key shares. However, the public validating key of the parent network key signing keypair never changes. This means all child keys will also remain the same.
Check out the Substrate documentation for information on chain randomness.
sequenceDiagram Entropy Chain->>+Validator TSS: Tells selected validator to do Reshare (with new signer to add and old to remove). Validator TSS->>+Validator TSS: Does Reshare with other selected validators stores new share in holding slot. Validator TSS->>+Entropy Chain: Tells chain everything was A-OK Entropy Chain->>+Validator TSS: When everyone is done tells all signers to rotate their holding key to the new parent key.
Negative pathways
- The above describes the happy pathway this part is for edge cases
A failure of reshare protocol
- There are multiple ways this process can fail, if that were to happen the offending party would be known as everyone in the new signing party needs to participate
- Since the process is two steps the current signing party would remain the offending party would be moved to slashing and the chain would initate a new reshare (not implemented yet)
- All parties are unable to unbond until leaving the singing party so their funds would be at risk and able to be slashed