Would be nice to have a secretKey alternative to the existing [mnemonic phrase option](https://github.com/paritytech/oo7/blob/master/packages/oo7-substrate/src/secretStore.js#L26-L30) something like the following: ```javascript submitSecretKey (secretKey, name) { this._keys.push({secretKey, name}) this._sync() return this.accountFromSecretKey(secretKey) } accountFromSecretKey (secretKey) { return new AccountId(nacl.sign.keyPair.fromSecretKey(secretKey).publicKey) } ```
Would be nice to have a secretKey alternative to the existing mnemonic phrase option something like the following: