diff --git a/cmd/chains.go b/cmd/chains.go index 6bad572..83d2ac5 100644 --- a/cmd/chains.go +++ b/cmd/chains.go @@ -110,7 +110,7 @@ func chainsShowCmd(app *relayer.App) *cobra.Command { cmd := &cobra.Command{ Use: "show [chain_name]", Aliases: []string{"s"}, - Short: "Return a chain's configuration data", + Short: "Return chain's configuration data", Args: withUsage(cobra.ExactArgs(1)), Example: strings.TrimSpace(fmt.Sprintf(` $ %s ch s eth diff --git a/cmd/config.go b/cmd/config.go index 7df5763..787ccb2 100644 --- a/cmd/config.go +++ b/cmd/config.go @@ -57,7 +57,7 @@ func configInitCmd(app *relayer.App) *cobra.Command { cmd := &cobra.Command{ Use: "init", Aliases: []string{"i"}, - Short: "Create a default configuration at home directory path defined by --home", + Short: "Create a default configuration at home directory path", Args: withUsage(cobra.NoArgs), Example: strings.TrimSpace(fmt.Sprintf(` $ %s config init --home %s diff --git a/cmd/query.go b/cmd/query.go index 72e78f1..3c1d517 100644 --- a/cmd/query.go +++ b/cmd/query.go @@ -16,7 +16,7 @@ func queryCmd(app *relayer.App) *cobra.Command { cmd := &cobra.Command{ Use: "query", Aliases: []string{"q"}, - Short: "Query commands on source and destination chains.", + Short: "Query commands on source and destination chains", } cmd.AddCommand( diff --git a/cmd/root.go b/cmd/root.go index 0233a8e..7a803e4 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -33,12 +33,12 @@ func NewRootCmd(log *zap.Logger) *cobra.Command { // RootCmd represents the base command when called without any subcommands rootCmd := &cobra.Command{ Use: appName, - Short: "This application relays tunnel messages to the target chains/contracts.", - Long: strings.TrimSpace(`falcon has: - 1. Configuration management for destination chains - 2. Key management for managing multiple keys for multiple chains - 3. transaction Execution functionality on destination chains. - 4. Query functionality on source and destination chains. + Short: "Falcon relays tss tunnel messages from BandChain to destination chains/smart contracts", + Long: strings.TrimSpace(`This application has: + 1. Configuration Management: Handles the configuration of the program. + 2. Key Management: Supports managing multiple keys across multiple chains. + 3. Transaction Execution: Enables executing transactions on destination chains. + 4. Query Functionality: Facilitates querying data from both source and destination chains. NOTE: Most of the commands have aliases that make typing them much quicker (i.e. 'falcon tx', 'falcon q', etc...)`), diff --git a/cmd/start.go b/cmd/start.go index 97557d2..519bc69 100644 --- a/cmd/start.go +++ b/cmd/start.go @@ -15,7 +15,7 @@ func startCmd(app *relayer.App) *cobra.Command { cmd := &cobra.Command{ Use: "start [tunnel_id...]", Aliases: []string{"st"}, - Short: "Start the falcon tunnel relayer system.", + Short: "Start the falcon tunnel relayer program", Args: withUsage(cobra.MinimumNArgs(0)), Example: strings.TrimSpace(fmt.Sprintf(` $ %s start # start relaying data from every tunnel being registered on source chain.