diff --git a/changelog.md b/changelog.md index c301db1eb0..6522299203 100644 --- a/changelog.md +++ b/changelog.md @@ -6,6 +6,7 @@ - [#3831](https://github.com/ignite/cli/pull/3831) Correct ignite app gRPC server stop memory issue - [#3825](https://github.com/ignite/cli/pull/3825) Fix a minor Keplr type-checking bug in TS client +- [#3836](https://github.com/ignite/cli/pull/3836) Add missing IBC commands for scaffolded chain ### Features diff --git a/ignite/templates/app/files/cmd/{{binaryNamePrefix}}d/cmd/commands.go.plush b/ignite/templates/app/files/cmd/{{binaryNamePrefix}}d/cmd/commands.go.plush index 8bb54e2f73..8058636f52 100644 --- a/ignite/templates/app/files/cmd/{{binaryNamePrefix}}d/cmd/commands.go.plush +++ b/ignite/templates/app/files/cmd/{{binaryNamePrefix}}d/cmd/commands.go.plush @@ -22,6 +22,7 @@ import ( authcmd "github.com/cosmos/cosmos-sdk/x/auth/client/cli" "github.com/cosmos/cosmos-sdk/x/crisis" genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli" + ibccmd "github.com/cosmos/ibc-go/v8/modules/core/client/cli" "github.com/spf13/cobra" "github.com/spf13/viper" @@ -87,6 +88,7 @@ func queryCommand() *cobra.Command { server.QueryBlocksCmd(), authcmd.QueryTxCmd(), server.QueryBlockResultsCmd(), + ibccmd.GetQueryCmd(), ) cmd.PersistentFlags().String(flags.FlagChainID, "", "The network chain ID") @@ -113,6 +115,7 @@ func txCommand() *cobra.Command { authcmd.GetEncodeCommand(), authcmd.GetDecodeCommand(), authcmd.GetSimulateCmd(), + ibccmd.GetTxCmd(), ) cmd.PersistentFlags().String(flags.FlagChainID, "", "The network chain ID")