You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The pubkeys module would serve as a repository for various public keys used in the protocol. Having a separate module for this purpose has the following advantages:
Provide a central repository of public keys that other modules can have access to
Facilitate management of keys on various curves (For example, we need to implement a single transaction endpoint for registering keys of any type)
Support key rotation (to be implemented later)
Implementation
The store for this module would have the following key-value scheme:
validator | curve -> public_key
There would be a single transaction endpoint for registering a key. A flag --rotate may be added to request overwriting an existing key.
✨ Feature
Motivation
The pubkeys module would serve as a repository for various public keys used in the protocol. Having a separate module for this purpose has the following advantages:
Implementation
The store for this module would have the following key-value scheme:
There would be a single transaction endpoint for registering a key. A flag
--rotate
may be added to request overwriting an existing key.The text was updated successfully, but these errors were encountered: