mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-10 04:01:51 +00:00
21 lines
627 B
Rust
21 lines
627 B
Rust
//! Provides:
|
|
//!
|
|
//! - `ValidatorDir`: manages a directory containing validator keypairs, deposit info and other
|
|
//! things.
|
|
//!
|
|
//! This crate is intended to be used by the account manager to create validators and the validator
|
|
//! client to load those validators.
|
|
|
|
mod builder;
|
|
pub mod insecure_keys;
|
|
mod validator_dir;
|
|
|
|
pub use crate::validator_dir::{
|
|
unlock_keypair_from_password_path, Error, Eth1DepositData, ValidatorDir,
|
|
ETH1_DEPOSIT_TX_HASH_FILE,
|
|
};
|
|
pub use builder::{
|
|
keystore_password_path, Builder, Error as BuilderError, ETH1_DEPOSIT_DATA_FILE,
|
|
VOTING_KEYSTORE_FILE, WITHDRAWAL_KEYSTORE_FILE,
|
|
};
|