mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-20 21:34:46 +00:00
* upgrade clap to v4.5 * cli fixes * Merge branch 'unstable' of https://github.com/sigp/lighthouse into upgrade-clap-cli * value parser for mnemonic * Merge branch 'unstable' of https://github.com/sigp/lighthouse into upgrade-clap-cli * merge unstable * default --format val * fix eth sim * fix eth sim * merge conflicts * resolve beta compiler issue * add num args, version * add custom flag parser, make rate limiter flags clap friendly * remove unneeded check * fmt * update * alphabetic order * resolve merge conflict * fix test * resolve conflicts * fix test * revert removed if statement * fmt got me again * fix broken flag * make cli * make cli * update * remove -e files * update * cli help updates * Merge branch 'unstable' of https://github.com/sigp/lighthouse into upgrade-clap-cli * cli help updates * md files * merge conflict * merge conflicts * md * help text, text width, and a few flag fixes * fmt * merge * revert * revert * resolve merge conflicts * merge conflicts * revert simulator changes * require at least one arg * fix eth sim cli * resolve merge conflicts * book changes * md changes * cli check * cli check * retry cli check * retry cli check * Merge branch 'unstable' of https://github.com/sigp/lighthouse into upgrade-clap-cli * cli * Merge remote-tracking branch 'origin/unstable' into upgrade-clap-cli * Update CLI docs for Goerli removal * Fix cargo lock
29 lines
740 B
Rust
29 lines
740 B
Rust
use account_utils::validator_definitions::ValidatorDefinitions;
|
|
use clap::Command;
|
|
use std::path::PathBuf;
|
|
|
|
pub const CMD: &str = "list";
|
|
|
|
pub fn cli_app() -> Command {
|
|
Command::new(CMD).about("Lists the public keys of all validators.")
|
|
}
|
|
|
|
pub fn cli_run(validator_dir: PathBuf) -> Result<(), String> {
|
|
let validator_definitions = ValidatorDefinitions::open(&validator_dir).map_err(|e| {
|
|
format!(
|
|
"No validator definitions found in {:?}: {:?}",
|
|
validator_dir, e
|
|
)
|
|
})?;
|
|
|
|
for def in validator_definitions.as_slice() {
|
|
println!(
|
|
"{} ({})",
|
|
def.voting_public_key,
|
|
if def.enabled { "enabled" } else { "disabled" }
|
|
);
|
|
}
|
|
|
|
Ok(())
|
|
}
|