mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-15 19:02:42 +00:00
48 lines
2.3 KiB
Rust
48 lines
2.3 KiB
Rust
use clap::{App, Arg, SubCommand};
|
|
|
|
pub fn cli_app<'a, 'b>() -> App<'a, 'b> {
|
|
App::new("account_manager")
|
|
.visible_aliases(&["a", "am", "account", "account_manager"])
|
|
.about("Utilities for generating and managing Ethereum 2.0 accounts.")
|
|
.subcommand(
|
|
SubCommand::with_name("validator")
|
|
.about("Generate or manage Etheruem 2.0 validators.")
|
|
.subcommand(
|
|
SubCommand::with_name("new")
|
|
.about("Create a new Ethereum 2.0 validator.")
|
|
.subcommand(
|
|
SubCommand::with_name("insecure")
|
|
.about("Produce insecure, ephemeral validators. DO NOT USE TO STORE VALUE.")
|
|
.arg(
|
|
Arg::with_name("first")
|
|
.index(1)
|
|
.value_name("INDEX")
|
|
.help("Index of the first validator")
|
|
.takes_value(true)
|
|
.required(true),
|
|
)
|
|
.arg(
|
|
Arg::with_name("last")
|
|
.index(2)
|
|
.value_name("INDEX")
|
|
.help("Index of the last validator")
|
|
.takes_value(true)
|
|
.required(true),
|
|
),
|
|
)
|
|
.subcommand(
|
|
SubCommand::with_name("random")
|
|
.about("Produces public keys using entropy from the Rust 'rand' library.")
|
|
.arg(
|
|
Arg::with_name("validator_count")
|
|
.index(1)
|
|
.value_name("INTEGER")
|
|
.help("The number of new validators to generate.")
|
|
.takes_value(true)
|
|
.default_value("1"),
|
|
),
|
|
)
|
|
)
|
|
)
|
|
}
|