9cf8f45192
## Issue Addressed N/A ## Proposed Changes Add a `lighthouse am wallet recover` command that recreates a wallet from a mnemonic but no validator keys. Add a `lighthouse am validator recover` command which would directly create keys from a mnemonic for a given index and count. ## Additional Info Co-authored-by: Paul Hauner <paul@paulhauner.com>
12 lines
329 B
Rust
12 lines
329 B
Rust
mod validator_path;
|
|
mod wallet;
|
|
|
|
pub mod json_wallet;
|
|
|
|
pub use bip39;
|
|
pub use validator_path::{KeyType, ValidatorPath, COIN_TYPE, PURPOSE};
|
|
pub use wallet::{
|
|
recover_validator_secret, recover_validator_secret_from_mnemonic, DerivedKey, Error,
|
|
KeystoreError, PlainText, Uuid, ValidatorKeystores, Wallet, WalletBuilder,
|
|
};
|