2020-09-23 00:24:35 +00:00
|
|
|
use sc_cli::RunCmd;
|
2021-07-20 12:44:58 +00:00
|
|
|
use structopt::StructOpt;
|
2020-03-05 16:53:25 +00:00
|
|
|
|
|
|
|
#[derive(Debug, StructOpt)]
|
|
|
|
pub struct Cli {
|
|
|
|
#[structopt(subcommand)]
|
|
|
|
pub subcommand: Option<Subcommand>,
|
|
|
|
|
|
|
|
#[structopt(flatten)]
|
|
|
|
pub run: RunCmd,
|
|
|
|
}
|
2020-09-23 00:24:35 +00:00
|
|
|
|
|
|
|
#[derive(Debug, StructOpt)]
|
|
|
|
pub enum Subcommand {
|
2021-02-24 14:12:24 +00:00
|
|
|
/// Key management cli utilities
|
|
|
|
Key(sc_cli::KeySubcommand),
|
2020-09-23 00:24:35 +00:00
|
|
|
/// Build a chain specification.
|
|
|
|
BuildSpec(sc_cli::BuildSpecCmd),
|
|
|
|
|
|
|
|
/// Validate blocks.
|
|
|
|
CheckBlock(sc_cli::CheckBlockCmd),
|
|
|
|
|
|
|
|
/// Export blocks.
|
|
|
|
ExportBlocks(sc_cli::ExportBlocksCmd),
|
|
|
|
|
|
|
|
/// Export the state of a given block into a chain spec.
|
|
|
|
ExportState(sc_cli::ExportStateCmd),
|
|
|
|
|
|
|
|
/// Import blocks.
|
|
|
|
ImportBlocks(sc_cli::ImportBlocksCmd),
|
|
|
|
|
|
|
|
/// Remove the whole chain.
|
|
|
|
PurgeChain(sc_cli::PurgeChainCmd),
|
|
|
|
|
|
|
|
/// Revert the chain to a previous state.
|
|
|
|
Revert(sc_cli::RevertCmd),
|
|
|
|
|
2021-10-01 23:38:49 +00:00
|
|
|
/// The custom benchmark subcommand benchmarking runtime pallets.
|
2020-09-23 00:24:35 +00:00
|
|
|
#[structopt(name = "benchmark", about = "Benchmark runtime pallets.")]
|
|
|
|
Benchmark(frame_benchmarking_cli::BenchmarkCmd),
|
|
|
|
}
|