diff --git a/ignite/cmd/generate_composables.go b/ignite/cmd/generate_composables.go index b3109db5b8..b434644870 100644 --- a/ignite/cmd/generate_composables.go +++ b/ignite/cmd/generate_composables.go @@ -10,9 +10,10 @@ import ( func NewGenerateComposables() *cobra.Command { c := &cobra.Command{ - Use: "composables", - Short: "TypeScript frontend client and Vue 3 composables", - RunE: generateComposablesHandler, + Hidden: true, // hidden util we have a better ts-client. + Use: "composables", + Short: "TypeScript frontend client and Vue 3 composables", + RunE: generateComposablesHandler, } c.Flags().AddFlagSet(flagSetYes()) diff --git a/ignite/cmd/generate_hooks.go b/ignite/cmd/generate_hooks.go index 74c2c1beda..37dd567c06 100644 --- a/ignite/cmd/generate_hooks.go +++ b/ignite/cmd/generate_hooks.go @@ -10,9 +10,10 @@ import ( func NewGenerateHooks() *cobra.Command { c := &cobra.Command{ - Use: "hooks", - Short: "TypeScript frontend client and React hooks", - RunE: generateHooksHandler, + Hidden: true, // hidden util we have a better ts-client. + Use: "hooks", + Short: "TypeScript frontend client and React hooks", + RunE: generateHooksHandler, } c.Flags().AddFlagSet(flagSetYes()) diff --git a/ignite/cmd/generate_typescript_client.go b/ignite/cmd/generate_typescript_client.go index 48e83aeae2..2c79d39770 100644 --- a/ignite/cmd/generate_typescript_client.go +++ b/ignite/cmd/generate_typescript_client.go @@ -17,8 +17,9 @@ const ( func NewGenerateTSClient() *cobra.Command { c := &cobra.Command{ - Use: "ts-client", - Short: "TypeScript frontend client", + Hidden: true, // hidden util we have a better ts-client. + Use: "ts-client", + Short: "TypeScript frontend client", Long: `Generate a framework agnostic TypeScript client for your blockchain project. By default the TypeScript client is generated in the "ts-client/" directory. You diff --git a/ignite/cmd/scaffold_react.go b/ignite/cmd/scaffold_react.go index e4ef4453f5..3ae01ead2c 100644 --- a/ignite/cmd/scaffold_react.go +++ b/ignite/cmd/scaffold_react.go @@ -11,6 +11,7 @@ import ( // NewScaffoldReact scaffolds a React app for a chain. func NewScaffoldReact() *cobra.Command { c := &cobra.Command{ + Hidden: true, // hidden util we have a better ts-client. Use: "react", Short: "React web app template", Args: cobra.NoArgs, diff --git a/ignite/cmd/scaffold_vue.go b/ignite/cmd/scaffold_vue.go index 3b14a69cab..c6529fff05 100644 --- a/ignite/cmd/scaffold_vue.go +++ b/ignite/cmd/scaffold_vue.go @@ -11,6 +11,7 @@ import ( // NewScaffoldVue scaffolds a Vue.js app for a chain. func NewScaffoldVue() *cobra.Command { c := &cobra.Command{ + Hidden: true, // hidden util we have a better ts-client. Use: "vue", Short: "Vue 3 web app template", Args: cobra.NoArgs, diff --git a/ignite/pkg/cosmosutil/gentx.go b/ignite/pkg/cosmosutil/gentx.go index 9ec7905dba..2d16b7e624 100644 --- a/ignite/pkg/cosmosutil/gentx.go +++ b/ignite/pkg/cosmosutil/gentx.go @@ -7,9 +7,10 @@ import ( sdkmath "cosmossdk.io/math" - "github.com/cometbft/cometbft/crypto/ed25519" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cometbft/cometbft/crypto/ed25519" + "github.com/ignite/cli/v29/ignite/pkg/errors" )