package cli import ( "github.com/spf13/cobra" "github.com/cosmos/cosmos-sdk/client" ) // NewTxCmd returns the transaction commands for IBC fungible token transfer func NewTxCmd() *cobra.Command { txCmd := &cobra.Command{ Use: "ibc-transfer", Short: "IBC fungible token transfer transaction subcommands", DisableFlagParsing: true, SuggestionsMinimumDistance: 2, RunE: client.ValidateCmd, } txCmd.AddCommand( NewTransferTxCmd(), ) return txCmd }