diff --git a/x/game/client/cli/query.go b/x/game/client/cli/query.go index 9a308e2..44c597a 100644 --- a/x/game/client/cli/query.go +++ b/x/game/client/cli/query.go @@ -16,7 +16,7 @@ import ( func GetQueryCmd() *cobra.Command { queryCmd := &cobra.Command{ Use: types.ModuleName, - Short: "Querying commands for the game module", + Short: "Query commands for the game manager module", DisableFlagParsing: true, } @@ -39,7 +39,7 @@ func GetQueryCmd() *cobra.Command { func GetCmdQueryParams() *cobra.Command { cmd := &cobra.Command{ Use: "params [flags]", - Long: "Query params.", + Long: "Query parameters.", Example: fmt.Sprintf( `$ %s query game params`, version.AppName), Args: cobra.ExactArgs(0), @@ -132,7 +132,7 @@ func GetCmdInGameNfts() *cobra.Command { func GetCmdDepositBalance() *cobra.Command { cmd := &cobra.Command{ Use: "deposit-balance [address] [flags]", - Long: "Query in-game nfts.", + Long: "Query in-game deposit balance.", Example: fmt.Sprintf( `$ %s query game deposit-balance [address]`, version.AppName), Args: cobra.ExactArgs(1), @@ -165,7 +165,7 @@ func GetCmdDepositBalance() *cobra.Command { func GetCmdAllDepositBalances() *cobra.Command { cmd := &cobra.Command{ Use: "all-deposit-balances [flags]", - Long: "Query in-game nfts.", + Long: "Query all in-game balances.", Example: fmt.Sprintf( `$ %s query game all-deposit-balances`, version.AppName), Args: cobra.ExactArgs(0), diff --git a/x/game/client/cli/tx.go b/x/game/client/cli/tx.go index 7d6ea0e..8ca2763 100644 --- a/x/game/client/cli/tx.go +++ b/x/game/client/cli/tx.go @@ -19,7 +19,7 @@ import ( func GetTxCmd() *cobra.Command { txCmd := &cobra.Command{ Use: types.ModuleName, - Short: "game transaction subcommands", + Short: "game manager transaction subcommands", DisableFlagParsing: true, SuggestionsMinimumDistance: 2, RunE: client.ValidateCmd, @@ -48,7 +48,7 @@ func GetTxCmd() *cobra.Command { func GetCmdTransferModuleOwnership() *cobra.Command { cmd := &cobra.Command{ Use: "transfer-module-ownership [newOwner] [flags]", - Long: "Transfer module ownership to new address", + Long: "Transfer module ownership to a new address", Args: cobra.ExactArgs(1), Example: fmt.Sprintf( `$ %s tx transfer-module-ownership [newOwner]`, @@ -363,7 +363,7 @@ func GetCmdWithdrawToken() *cobra.Command { func GetCmdStakeInGameToken() *cobra.Command { cmd := &cobra.Command{ Use: "stake-ingame-token [coin] [flags]", - Long: "Stake ingame token", + Long: "Stake in-game token", Args: cobra.ExactArgs(1), Example: fmt.Sprintf( `$ %s tx stake-ingame-token [coin]`, @@ -401,7 +401,7 @@ func GetCmdStakeInGameToken() *cobra.Command { func GetCmdBeginUnstakeInGameToken() *cobra.Command { cmd := &cobra.Command{ Use: "begin-unstake-ingame-token [coin] [flags]", - Long: "Begin unstake of ingame token", + Long: "Begin unstaking the in-game token", Args: cobra.ExactArgs(1), Example: fmt.Sprintf( `$ %s tx begin-unstake-ingame-token [coin]`, @@ -439,7 +439,7 @@ func GetCmdBeginUnstakeInGameToken() *cobra.Command { func GetCmdClaimInGameStakingReward() *cobra.Command { cmd := &cobra.Command{ Use: "claim-ingame-staking-reward [flags]", - Long: "Claim ingame staking reward", + Long: "Claim in-game staking reward", Args: cobra.ExactArgs(0), Example: fmt.Sprintf( `$ %s tx claim-ingame-staking-reward`,