diff --git a/x/alliance/client/cli/gov.go b/x/alliance/client/cli/gov.go index 4b314490..af7917dc 100644 --- a/x/alliance/client/cli/gov.go +++ b/x/alliance/client/cli/gov.go @@ -15,7 +15,7 @@ import ( func CreateAlliance() *cobra.Command { cmd := &cobra.Command{ - Use: "create-alliance denom rewards-weight rewards-weight-min rewards-weight-max take-rate reward-change-rate reward-change-interval", + Use: "create-alliance denom reward-weight reward-weight-min reward-weight-max take-rate reward-change-rate reward-change-interval", Args: cobra.ExactArgs(7), Short: "Create an alliance with the specified parameters", RunE: func(cmd *cobra.Command, args []string) error { @@ -118,7 +118,7 @@ func CreateAlliance() *cobra.Command { func UpdateAlliance() *cobra.Command { cmd := &cobra.Command{ - Use: "update-alliance denom rewards-weight take-rate reward-change-rate reward-change-interval", + Use: "update-alliance denom reward-weight take-rate reward-change-rate reward-change-interval", Args: cobra.ExactArgs(5), Short: "Update an alliance with the specified parameters", RunE: func(cmd *cobra.Command, args []string) error { diff --git a/x/alliance/client/cli/tx.go b/x/alliance/client/cli/tx.go index e58ef0d9..afa9c3f6 100644 --- a/x/alliance/client/cli/tx.go +++ b/x/alliance/client/cli/tx.go @@ -34,7 +34,7 @@ func NewDelegateCmd() *cobra.Command { Args: cobra.ExactArgs(2), Short: "Delegate alliance enabled tokens to a validator", Long: strings.TrimSpace( - fmt.Sprintf(`Delegate an amount of liquid alliance enabled coins to a validator from your wallet. + fmt.Sprintf(`Delegate an amount of liquid alliance-enabled coins to a validator from your wallet. Example: $ %s tx alliance delegate %s1l2rsakp388kuv9k8qzq6lrm9taddae7fpx59wm 1000stake --from mykey @@ -81,7 +81,7 @@ func NewRedelegateCmd() *cobra.Command { Args: cobra.ExactArgs(3), Short: "Re-delegate alliance enabled tokens from a validator to another", Long: strings.TrimSpace( - fmt.Sprintf(`Re-delegate an amount of liquid alliance enabled coins from a validator to another from your wallet. + fmt.Sprintf(`Re-delegate an amount of liquid alliance-enabled coins from one validator to another from your wallet. Example: $ %s tx alliance redelegate %s1l2rsakp388kuv9k8qzq6lrm9taddae7fpx59wm %ss1l2rsakp388kuv9k8qzq6lrm9taddae7fpx59wm 1000stake --from mykey