cosmos-sdk/client/rpc/root.go

18 lines
706 B
Go
Raw Normal View History

package rpc
2018-02-22 06:33:34 -08:00
import (
"github.com/gorilla/mux"
2018-12-10 06:27:25 -08:00
"github.com/cosmos/cosmos-sdk/client/context"
)
2018-02-22 06:33:34 -08:00
2018-04-18 21:49:24 -07:00
// Register REST endpoints
func RegisterRPCRoutes(cliCtx context.CLIContext, r *mux.Router) {
2018-08-06 11:11:30 -07:00
r.HandleFunc("/node_info", NodeInfoRequestHandlerFn(cliCtx)).Methods("GET")
r.HandleFunc("/syncing", NodeSyncingRequestHandlerFn(cliCtx)).Methods("GET")
r.HandleFunc("/blocks/latest", LatestBlockRequestHandlerFn(cliCtx)).Methods("GET")
r.HandleFunc("/blocks/{height}", BlockRequestHandlerFn(cliCtx)).Methods("GET")
r.HandleFunc("/validatorsets/latest", LatestValidatorSetRequestHandlerFn(cliCtx)).Methods("GET")
r.HandleFunc("/validatorsets/{height}", ValidatorSetRequestHandlerFn(cliCtx)).Methods("GET")
2018-03-09 01:15:56 -08:00
}