Documentation ¶
Index ¶
- func AddCommands(cmd *cobra.Command)
- func BlockCommand() *cobra.Command
- func BlockRequestHandlerFn(ctx context.CoreContext) http.HandlerFunc
- func GetChainHeight(ctx context.CoreContext) (int64, error)
- func LatestBlockRequestHandlerFn(ctx context.CoreContext) http.HandlerFunc
- func LatestValidatorSetRequestHandlerFn(ctx context.CoreContext) http.HandlerFunc
- func NodeInfoRequestHandlerFn(ctx context.CoreContext) http.HandlerFunc
- func NodeSyncingRequestHandlerFn(ctx context.CoreContext) http.HandlerFunc
- func RegisterRoutes(ctx context.CoreContext, r *mux.Router)
- func ValidatorCommand() *cobra.Command
- func ValidatorSetRequestHandlerFn(ctx context.CoreContext) http.HandlerFunc
- type ResultValidatorsOutput
- type ValidatorOutput
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AddCommands ¶ added in v0.2.0
AddCommands adds a number of rpc-related subcommands
func BlockCommand ¶
BlockCommand returns the verified block data for a given heights
func BlockRequestHandlerFn ¶
func BlockRequestHandlerFn(ctx context.CoreContext) http.HandlerFunc
REST handler to get a block
func GetChainHeight ¶
func GetChainHeight(ctx context.CoreContext) (int64, error)
get the current blockchain height
func LatestBlockRequestHandlerFn ¶
func LatestBlockRequestHandlerFn(ctx context.CoreContext) http.HandlerFunc
REST handler to get the latest block
func LatestValidatorSetRequestHandlerFn ¶
func LatestValidatorSetRequestHandlerFn(ctx context.CoreContext) http.HandlerFunc
Latest Validator Set REST handler
func NodeInfoRequestHandlerFn ¶
func NodeInfoRequestHandlerFn(ctx context.CoreContext) http.HandlerFunc
REST handler for node info
func NodeSyncingRequestHandlerFn ¶
func NodeSyncingRequestHandlerFn(ctx context.CoreContext) http.HandlerFunc
REST handler for node syncing
func RegisterRoutes ¶ added in v0.2.0
func RegisterRoutes(ctx context.CoreContext, r *mux.Router)
Register REST endpoints
func ValidatorCommand ¶
ValidatorCommand returns the validator set for a given height
func ValidatorSetRequestHandlerFn ¶
func ValidatorSetRequestHandlerFn(ctx context.CoreContext) http.HandlerFunc
Validator Set at a height REST handler
Types ¶
type ResultValidatorsOutput ¶
type ResultValidatorsOutput struct { BlockHeight int64 `json:"block_height"` Validators []ValidatorOutput `json:"validators"` }
Validators at a certain height output in bech32 format
type ValidatorOutput ¶
type ValidatorOutput struct { Address sdk.ValAddress `json:"address"` // in bech32 PubKey string `json:"pub_key"` // in bech32 Accum int64 `json:"accum"` VotingPower int64 `json:"voting_power"` }
Validator output in bech32 format
Click to show internal directories.
Click to hide internal directories.