paritytech / secret-store

Parity Secret Store implementation
GNU General Public License v3.0
23 stars 11 forks source link

Introduce SecretStore for Substrate binary #28

Closed svyatonik closed 4 years ago

svyatonik commented 4 years ago

This PR introduces first SS binary in this repo: parity-secretstore-substrate. It starts key server, substrate service and connects to Substrate node that run blockchain with SecretStore module. Since there could be multiple different blockchains which use different hashes, transactions, etc, this binary is designed to be 'generic' (not as in Rust) over runtime. Everything must be configured in the runtime.rs module. The node should also expose system_accountNextIndex RPC. Right now it is configured to work with the bin/substrate-node.

Tests are yet to be added - both integration (#17 ) and module-level.