38 lines
1.1 KiB
Go
38 lines
1.1 KiB
Go
package channel
|
|
|
|
import (
|
|
"github.com/gogo/protobuf/grpc"
|
|
"github.com/gorilla/mux"
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/x/ibc/04-channel/client/cli"
|
|
"github.com/cosmos/cosmos-sdk/x/ibc/04-channel/client/rest"
|
|
"github.com/cosmos/cosmos-sdk/x/ibc/04-channel/types"
|
|
)
|
|
|
|
// Name returns the IBC channel ICS name.
|
|
func Name() string {
|
|
return types.SubModuleName
|
|
}
|
|
|
|
// GetTxCmd returns the root tx command for IBC channels.
|
|
func GetTxCmd() *cobra.Command {
|
|
return cli.NewTxCmd()
|
|
}
|
|
|
|
// GetQueryCmd returns the root query command for IBC channels.
|
|
func GetQueryCmd(clientCtx client.Context) *cobra.Command {
|
|
return cli.GetQueryCmd(clientCtx)
|
|
}
|
|
|
|
// RegisterRESTRoutes registers the REST routes for IBC channels.
|
|
func RegisterRESTRoutes(clientCtx client.Context, rtr *mux.Router) {
|
|
rest.RegisterRoutes(clientCtx, rtr)
|
|
}
|
|
|
|
// RegisterQueryService registers the gRPC query service for IBC channels.
|
|
func RegisterQueryService(server grpc.Server, queryServer types.QueryServer) {
|
|
types.RegisterQueryServer(server, queryServer)
|
|
}
|