diff --git a/example-crates/example_cli/src/lib.rs b/example-crates/example_cli/src/lib.rs index cfc499a0..2d4f0d70 100644 --- a/example-crates/example_cli/src/lib.rs +++ b/example-crates/example_cli/src/lib.rs @@ -73,7 +73,9 @@ pub enum Commands { }, /// Send coins to an address. Send { + /// Amount to send in satoshis value: u64, + /// Destination address address: Address, #[clap(short, default_value = "bnb")] coin_select: CoinSelectionAlgo, @@ -144,14 +146,17 @@ pub enum AddressCmd { New, /// List all addresses List { + /// List change addresses #[clap(long)] change: bool, }, + /// Get last revealed address index for each keychain. Index, } #[derive(Subcommand, Debug, Clone)] pub enum TxOutCmd { + /// List transaction outputs. List { /// Return only spent outputs. #[clap(short, long)]