// NewBurnCmd broadcasts MsgBurn
func NewBurnCmd() *cobra.Command {
	cmd := &cobra.Command{
		Use:   "burn [amount] [flags]",  // <---------
		Short: "Burn tokens from an address. Must have admin authority to do so.",
		Args:  cobra.ExactArgs(1),
		RunE: func(cmd *cobra.Command, args []string) error {

...

	return cmd
}
  2024-11-mantra git:(main)  mantrachaind tx tokenfactory burn
Usage:
  mantrachaind tx tokenfactory burn [amount] [flags]
diff --git a/x/tokenfactory/client/cli/tx.go b/x/tokenfactory/client/cli/tx.go
index af81098..b8fc5b2 100644
--- a/x/tokenfactory/client/cli/tx.go
+++ b/x/tokenfactory/client/cli/tx.go
@@ -106,7 +106,7 @@ func NewMintCmd() *cobra.Command {
 // NewBurnCmd broadcasts MsgBurn
 func NewBurnCmd() *cobra.Command {
        cmd := &cobra.Command{
-               Use:   "burn [amount] [flags]",
+               Use:   "burn [amount] [burn-from-address] [flags]",
                Short: "Burn tokens from an address. Must have admin authority to do so.",
                Args:  cobra.ExactArgs(1),
                RunE: func(cmd *cobra.Command, args []string) error {
(END)
