tendermintv1beta1

package
v0.0.0-...-a315113 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 20, 2022 License: Apache-2.0 Imports: 18 Imported by: 0

Documentation

Overview

Code generated by protoc-gen-go-pulsar. DO NOT EDIT.

Index

Constants

This section is empty.

Variables

View Source
var File_cosmos_base_tendermint_v1beta1_query_proto protoreflect.FileDescriptor
View Source
var Service_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "cosmos.base.tendermint.v1beta1.Service",
	HandlerType: (*ServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetNodeInfo",
			Handler:    _Service_GetNodeInfo_Handler,
		},
		{
			MethodName: "GetSyncing",
			Handler:    _Service_GetSyncing_Handler,
		},
		{
			MethodName: "GetLatestBlock",
			Handler:    _Service_GetLatestBlock_Handler,
		},
		{
			MethodName: "GetBlockByHeight",
			Handler:    _Service_GetBlockByHeight_Handler,
		},
		{
			MethodName: "GetLatestValidatorSet",
			Handler:    _Service_GetLatestValidatorSet_Handler,
		},
		{
			MethodName: "GetValidatorSetByHeight",
			Handler:    _Service_GetValidatorSetByHeight_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "cosmos/base/tendermint/v1beta1/query.proto",
}

Service_ServiceDesc is the grpc.ServiceDesc for Service service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

Functions

func RegisterServiceServer

func RegisterServiceServer(s grpc.ServiceRegistrar, srv ServiceServer)

Types

type GetBlockByHeightRequest

type GetBlockByHeightRequest struct {
	Height int64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	// contains filtered or unexported fields
}

GetBlockByHeightRequest is the request type for the Query/GetBlockByHeight RPC method.

func (*GetBlockByHeightRequest) Descriptor deprecated

func (*GetBlockByHeightRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetBlockByHeightRequest.ProtoReflect.Descriptor instead.

func (*GetBlockByHeightRequest) GetHeight

func (x *GetBlockByHeightRequest) GetHeight() int64

func (*GetBlockByHeightRequest) ProtoMessage

func (*GetBlockByHeightRequest) ProtoMessage()

func (*GetBlockByHeightRequest) ProtoReflect

func (x *GetBlockByHeightRequest) ProtoReflect() protoreflect.Message

func (*GetBlockByHeightRequest) Reset

func (x *GetBlockByHeightRequest) Reset()

func (*GetBlockByHeightRequest) String

func (x *GetBlockByHeightRequest) String() string

type GetBlockByHeightResponse

type GetBlockByHeightResponse struct {
	BlockId *types.BlockID `protobuf:"bytes,1,opt,name=block_id,json=blockId,proto3" json:"block_id,omitempty"`
	Block   *types.Block   `protobuf:"bytes,2,opt,name=block,proto3" json:"block,omitempty"`
	// contains filtered or unexported fields
}

GetBlockByHeightResponse is the response type for the Query/GetBlockByHeight RPC method.

func (*GetBlockByHeightResponse) Descriptor deprecated

func (*GetBlockByHeightResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetBlockByHeightResponse.ProtoReflect.Descriptor instead.

func (*GetBlockByHeightResponse) GetBlock

func (x *GetBlockByHeightResponse) GetBlock() *types.Block

func (*GetBlockByHeightResponse) GetBlockId

func (x *GetBlockByHeightResponse) GetBlockId() *types.BlockID

func (*GetBlockByHeightResponse) ProtoMessage

func (*GetBlockByHeightResponse) ProtoMessage()

func (*GetBlockByHeightResponse) ProtoReflect

func (x *GetBlockByHeightResponse) ProtoReflect() protoreflect.Message

func (*GetBlockByHeightResponse) Reset

func (x *GetBlockByHeightResponse) Reset()

func (*GetBlockByHeightResponse) String

func (x *GetBlockByHeightResponse) String() string

type GetLatestBlockRequest

type GetLatestBlockRequest struct {
	// contains filtered or unexported fields
}

GetLatestBlockRequest is the request type for the Query/GetLatestBlock RPC method.

func (*GetLatestBlockRequest) Descriptor deprecated

func (*GetLatestBlockRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetLatestBlockRequest.ProtoReflect.Descriptor instead.

func (*GetLatestBlockRequest) ProtoMessage

func (*GetLatestBlockRequest) ProtoMessage()

func (*GetLatestBlockRequest) ProtoReflect

func (x *GetLatestBlockRequest) ProtoReflect() protoreflect.Message

func (*GetLatestBlockRequest) Reset

func (x *GetLatestBlockRequest) Reset()

func (*GetLatestBlockRequest) String

func (x *GetLatestBlockRequest) String() string

type GetLatestBlockResponse

type GetLatestBlockResponse struct {
	BlockId *types.BlockID `protobuf:"bytes,1,opt,name=block_id,json=blockId,proto3" json:"block_id,omitempty"`
	Block   *types.Block   `protobuf:"bytes,2,opt,name=block,proto3" json:"block,omitempty"`
	// contains filtered or unexported fields
}

GetLatestBlockResponse is the response type for the Query/GetLatestBlock RPC method.

func (*GetLatestBlockResponse) Descriptor deprecated

func (*GetLatestBlockResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetLatestBlockResponse.ProtoReflect.Descriptor instead.

func (*GetLatestBlockResponse) GetBlock

func (x *GetLatestBlockResponse) GetBlock() *types.Block

func (*GetLatestBlockResponse) GetBlockId

func (x *GetLatestBlockResponse) GetBlockId() *types.BlockID

func (*GetLatestBlockResponse) ProtoMessage

func (*GetLatestBlockResponse) ProtoMessage()

func (*GetLatestBlockResponse) ProtoReflect

func (x *GetLatestBlockResponse) ProtoReflect() protoreflect.Message

func (*GetLatestBlockResponse) Reset

func (x *GetLatestBlockResponse) Reset()

func (*GetLatestBlockResponse) String

func (x *GetLatestBlockResponse) String() string

type GetLatestValidatorSetRequest

type GetLatestValidatorSetRequest struct {

	// pagination defines an pagination for the request.
	Pagination *v1beta1.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// contains filtered or unexported fields
}

GetLatestValidatorSetRequest is the request type for the Query/GetValidatorSetByHeight RPC method.

func (*GetLatestValidatorSetRequest) Descriptor deprecated

func (*GetLatestValidatorSetRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetLatestValidatorSetRequest.ProtoReflect.Descriptor instead.

func (*GetLatestValidatorSetRequest) GetPagination

func (x *GetLatestValidatorSetRequest) GetPagination() *v1beta1.PageRequest

func (*GetLatestValidatorSetRequest) ProtoMessage

func (*GetLatestValidatorSetRequest) ProtoMessage()

func (*GetLatestValidatorSetRequest) ProtoReflect

func (*GetLatestValidatorSetRequest) Reset

func (x *GetLatestValidatorSetRequest) Reset()

func (*GetLatestValidatorSetRequest) String

type GetLatestValidatorSetResponse

type GetLatestValidatorSetResponse struct {
	BlockHeight int64        `protobuf:"varint,1,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	Validators  []*Validator `protobuf:"bytes,2,rep,name=validators,proto3" json:"validators,omitempty"`
	// pagination defines an pagination for the response.
	Pagination *v1beta1.PageResponse `protobuf:"bytes,3,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// contains filtered or unexported fields
}

GetLatestValidatorSetResponse is the response type for the Query/GetValidatorSetByHeight RPC method.

func (*GetLatestValidatorSetResponse) Descriptor deprecated

func (*GetLatestValidatorSetResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetLatestValidatorSetResponse.ProtoReflect.Descriptor instead.

func (*GetLatestValidatorSetResponse) GetBlockHeight

func (x *GetLatestValidatorSetResponse) GetBlockHeight() int64

func (*GetLatestValidatorSetResponse) GetPagination

func (*GetLatestValidatorSetResponse) GetValidators

func (x *GetLatestValidatorSetResponse) GetValidators() []*Validator

func (*GetLatestValidatorSetResponse) ProtoMessage

func (*GetLatestValidatorSetResponse) ProtoMessage()

func (*GetLatestValidatorSetResponse) ProtoReflect

func (*GetLatestValidatorSetResponse) Reset

func (x *GetLatestValidatorSetResponse) Reset()

func (*GetLatestValidatorSetResponse) String

type GetNodeInfoRequest

type GetNodeInfoRequest struct {
	// contains filtered or unexported fields
}

GetNodeInfoRequest is the request type for the Query/GetNodeInfo RPC method.

func (*GetNodeInfoRequest) Descriptor deprecated

func (*GetNodeInfoRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetNodeInfoRequest.ProtoReflect.Descriptor instead.

func (*GetNodeInfoRequest) ProtoMessage

func (*GetNodeInfoRequest) ProtoMessage()

func (*GetNodeInfoRequest) ProtoReflect

func (x *GetNodeInfoRequest) ProtoReflect() protoreflect.Message

func (*GetNodeInfoRequest) Reset

func (x *GetNodeInfoRequest) Reset()

func (*GetNodeInfoRequest) String

func (x *GetNodeInfoRequest) String() string

type GetNodeInfoResponse

type GetNodeInfoResponse struct {
	NodeInfo           *p2p.NodeInfo `protobuf:"bytes,1,opt,name=node_info,json=nodeInfo,proto3" json:"node_info,omitempty"`
	ApplicationVersion *VersionInfo  `protobuf:"bytes,2,opt,name=application_version,json=applicationVersion,proto3" json:"application_version,omitempty"`
	// contains filtered or unexported fields
}

GetNodeInfoResponse is the response type for the Query/GetNodeInfo RPC method.

func (*GetNodeInfoResponse) Descriptor deprecated

func (*GetNodeInfoResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetNodeInfoResponse.ProtoReflect.Descriptor instead.

func (*GetNodeInfoResponse) GetApplicationVersion

func (x *GetNodeInfoResponse) GetApplicationVersion() *VersionInfo

func (*GetNodeInfoResponse) GetNodeInfo

func (x *GetNodeInfoResponse) GetNodeInfo() *p2p.NodeInfo

func (*GetNodeInfoResponse) ProtoMessage

func (*GetNodeInfoResponse) ProtoMessage()

func (*GetNodeInfoResponse) ProtoReflect

func (x *GetNodeInfoResponse) ProtoReflect() protoreflect.Message

func (*GetNodeInfoResponse) Reset

func (x *GetNodeInfoResponse) Reset()

func (*GetNodeInfoResponse) String

func (x *GetNodeInfoResponse) String() string

type GetSyncingRequest

type GetSyncingRequest struct {
	// contains filtered or unexported fields
}

GetSyncingRequest is the request type for the Query/GetSyncing RPC method.

func (*GetSyncingRequest) Descriptor deprecated

func (*GetSyncingRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetSyncingRequest.ProtoReflect.Descriptor instead.

func (*GetSyncingRequest) ProtoMessage

func (*GetSyncingRequest) ProtoMessage()

func (*GetSyncingRequest) ProtoReflect

func (x *GetSyncingRequest) ProtoReflect() protoreflect.Message

func (*GetSyncingRequest) Reset

func (x *GetSyncingRequest) Reset()

func (*GetSyncingRequest) String

func (x *GetSyncingRequest) String() string

type GetSyncingResponse

type GetSyncingResponse struct {
	Syncing bool `protobuf:"varint,1,opt,name=syncing,proto3" json:"syncing,omitempty"`
	// contains filtered or unexported fields
}

GetSyncingResponse is the response type for the Query/GetSyncing RPC method.

func (*GetSyncingResponse) Descriptor deprecated

func (*GetSyncingResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetSyncingResponse.ProtoReflect.Descriptor instead.

func (*GetSyncingResponse) GetSyncing

func (x *GetSyncingResponse) GetSyncing() bool

func (*GetSyncingResponse) ProtoMessage

func (*GetSyncingResponse) ProtoMessage()

func (*GetSyncingResponse) ProtoReflect

func (x *GetSyncingResponse) ProtoReflect() protoreflect.Message

func (*GetSyncingResponse) Reset

func (x *GetSyncingResponse) Reset()

func (*GetSyncingResponse) String

func (x *GetSyncingResponse) String() string

type GetValidatorSetByHeightRequest

type GetValidatorSetByHeightRequest struct {
	Height int64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	// pagination defines an pagination for the request.
	Pagination *v1beta1.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// contains filtered or unexported fields
}

GetValidatorSetByHeightRequest is the request type for the Query/GetValidatorSetByHeight RPC method.

func (*GetValidatorSetByHeightRequest) Descriptor deprecated

func (*GetValidatorSetByHeightRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetValidatorSetByHeightRequest.ProtoReflect.Descriptor instead.

func (*GetValidatorSetByHeightRequest) GetHeight

func (x *GetValidatorSetByHeightRequest) GetHeight() int64

func (*GetValidatorSetByHeightRequest) GetPagination

func (*GetValidatorSetByHeightRequest) ProtoMessage

func (*GetValidatorSetByHeightRequest) ProtoMessage()

func (*GetValidatorSetByHeightRequest) ProtoReflect

func (*GetValidatorSetByHeightRequest) Reset

func (x *GetValidatorSetByHeightRequest) Reset()

func (*GetValidatorSetByHeightRequest) String

type GetValidatorSetByHeightResponse

type GetValidatorSetByHeightResponse struct {
	BlockHeight int64        `protobuf:"varint,1,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	Validators  []*Validator `protobuf:"bytes,2,rep,name=validators,proto3" json:"validators,omitempty"`
	// pagination defines an pagination for the response.
	Pagination *v1beta1.PageResponse `protobuf:"bytes,3,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// contains filtered or unexported fields
}

GetValidatorSetByHeightResponse is the response type for the Query/GetValidatorSetByHeight RPC method.

func (*GetValidatorSetByHeightResponse) Descriptor deprecated

func (*GetValidatorSetByHeightResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetValidatorSetByHeightResponse.ProtoReflect.Descriptor instead.

func (*GetValidatorSetByHeightResponse) GetBlockHeight

func (x *GetValidatorSetByHeightResponse) GetBlockHeight() int64

func (*GetValidatorSetByHeightResponse) GetPagination

func (*GetValidatorSetByHeightResponse) GetValidators

func (x *GetValidatorSetByHeightResponse) GetValidators() []*Validator

func (*GetValidatorSetByHeightResponse) ProtoMessage

func (*GetValidatorSetByHeightResponse) ProtoMessage()

func (*GetValidatorSetByHeightResponse) ProtoReflect

func (*GetValidatorSetByHeightResponse) Reset

func (*GetValidatorSetByHeightResponse) String

type Module

type Module struct {

	// module path
	Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	// module version
	Version string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
	// checksum
	Sum string `protobuf:"bytes,3,opt,name=sum,proto3" json:"sum,omitempty"`
	// contains filtered or unexported fields
}

Module is the type for VersionInfo

func (*Module) Descriptor deprecated

func (*Module) Descriptor() ([]byte, []int)

Deprecated: Use Module.ProtoReflect.Descriptor instead.

func (*Module) GetPath

func (x *Module) GetPath() string

func (*Module) GetSum

func (x *Module) GetSum() string

func (*Module) GetVersion

func (x *Module) GetVersion() string

func (*Module) ProtoMessage

func (*Module) ProtoMessage()

func (*Module) ProtoReflect

func (x *Module) ProtoReflect() protoreflect.Message

func (*Module) Reset

func (x *Module) Reset()

func (*Module) String

func (x *Module) String() string

type ServiceClient

type ServiceClient interface {
	// GetNodeInfo queries the current node info.
	GetNodeInfo(ctx context.Context, in *GetNodeInfoRequest, opts ...grpc.CallOption) (*GetNodeInfoResponse, error)
	// GetSyncing queries node syncing.
	GetSyncing(ctx context.Context, in *GetSyncingRequest, opts ...grpc.CallOption) (*GetSyncingResponse, error)
	// GetLatestBlock returns the latest block.
	GetLatestBlock(ctx context.Context, in *GetLatestBlockRequest, opts ...grpc.CallOption) (*GetLatestBlockResponse, error)
	// GetBlockByHeight queries block for given height.
	GetBlockByHeight(ctx context.Context, in *GetBlockByHeightRequest, opts ...grpc.CallOption) (*GetBlockByHeightResponse, error)
	// GetLatestValidatorSet queries latest validator-set.
	GetLatestValidatorSet(ctx context.Context, in *GetLatestValidatorSetRequest, opts ...grpc.CallOption) (*GetLatestValidatorSetResponse, error)
	// GetValidatorSetByHeight queries validator-set at a given height.
	GetValidatorSetByHeight(ctx context.Context, in *GetValidatorSetByHeightRequest, opts ...grpc.CallOption) (*GetValidatorSetByHeightResponse, error)
}

ServiceClient is the client API for Service service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewServiceClient

func NewServiceClient(cc grpc.ClientConnInterface) ServiceClient

type ServiceServer

type ServiceServer interface {
	// GetNodeInfo queries the current node info.
	GetNodeInfo(context.Context, *GetNodeInfoRequest) (*GetNodeInfoResponse, error)
	// GetSyncing queries node syncing.
	GetSyncing(context.Context, *GetSyncingRequest) (*GetSyncingResponse, error)
	// GetLatestBlock returns the latest block.
	GetLatestBlock(context.Context, *GetLatestBlockRequest) (*GetLatestBlockResponse, error)
	// GetBlockByHeight queries block for given height.
	GetBlockByHeight(context.Context, *GetBlockByHeightRequest) (*GetBlockByHeightResponse, error)
	// GetLatestValidatorSet queries latest validator-set.
	GetLatestValidatorSet(context.Context, *GetLatestValidatorSetRequest) (*GetLatestValidatorSetResponse, error)
	// GetValidatorSetByHeight queries validator-set at a given height.
	GetValidatorSetByHeight(context.Context, *GetValidatorSetByHeightRequest) (*GetValidatorSetByHeightResponse, error)
	// contains filtered or unexported methods
}

ServiceServer is the server API for Service service. All implementations must embed UnimplementedServiceServer for forward compatibility

type UnimplementedServiceServer

type UnimplementedServiceServer struct {
}

UnimplementedServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedServiceServer) GetBlockByHeight

func (UnimplementedServiceServer) GetLatestBlock

func (UnimplementedServiceServer) GetNodeInfo

func (UnimplementedServiceServer) GetSyncing

type UnsafeServiceServer

type UnsafeServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to ServiceServer will result in compilation errors.

type Validator

type Validator struct {
	Address          string     `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	PubKey           *anypb.Any `protobuf:"bytes,2,opt,name=pub_key,json=pubKey,proto3" json:"pub_key,omitempty"`
	VotingPower      int64      `protobuf:"varint,3,opt,name=voting_power,json=votingPower,proto3" json:"voting_power,omitempty"`
	ProposerPriority int64      `protobuf:"varint,4,opt,name=proposer_priority,json=proposerPriority,proto3" json:"proposer_priority,omitempty"`
	// contains filtered or unexported fields
}

Validator is the type for the validator-set.

func (*Validator) Descriptor deprecated

func (*Validator) Descriptor() ([]byte, []int)

Deprecated: Use Validator.ProtoReflect.Descriptor instead.

func (*Validator) GetAddress

func (x *Validator) GetAddress() string

func (*Validator) GetProposerPriority

func (x *Validator) GetProposerPriority() int64

func (*Validator) GetPubKey

func (x *Validator) GetPubKey() *anypb.Any

func (*Validator) GetVotingPower

func (x *Validator) GetVotingPower() int64

func (*Validator) ProtoMessage

func (*Validator) ProtoMessage()

func (*Validator) ProtoReflect

func (x *Validator) ProtoReflect() protoreflect.Message

func (*Validator) Reset

func (x *Validator) Reset()

func (*Validator) String

func (x *Validator) String() string

type VersionInfo

type VersionInfo struct {
	Name      string    `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	AppName   string    `protobuf:"bytes,2,opt,name=app_name,json=appName,proto3" json:"app_name,omitempty"`
	Version   string    `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"`
	GitCommit string    `protobuf:"bytes,4,opt,name=git_commit,json=gitCommit,proto3" json:"git_commit,omitempty"`
	BuildTags string    `protobuf:"bytes,5,opt,name=build_tags,json=buildTags,proto3" json:"build_tags,omitempty"`
	GoVersion string    `protobuf:"bytes,6,opt,name=go_version,json=goVersion,proto3" json:"go_version,omitempty"`
	BuildDeps []*Module `protobuf:"bytes,7,rep,name=build_deps,json=buildDeps,proto3" json:"build_deps,omitempty"`
	// Since: cosmos-sdk 0.43
	CosmosSdkVersion string `protobuf:"bytes,8,opt,name=cosmos_sdk_version,json=cosmosSdkVersion,proto3" json:"cosmos_sdk_version,omitempty"`
	// contains filtered or unexported fields
}

VersionInfo is the type for the GetNodeInfoResponse message.

func (*VersionInfo) Descriptor deprecated

func (*VersionInfo) Descriptor() ([]byte, []int)

Deprecated: Use VersionInfo.ProtoReflect.Descriptor instead.

func (*VersionInfo) GetAppName

func (x *VersionInfo) GetAppName() string

func (*VersionInfo) GetBuildDeps

func (x *VersionInfo) GetBuildDeps() []*Module

func (*VersionInfo) GetBuildTags

func (x *VersionInfo) GetBuildTags() string

func (*VersionInfo) GetCosmosSdkVersion

func (x *VersionInfo) GetCosmosSdkVersion() string

func (*VersionInfo) GetGitCommit

func (x *VersionInfo) GetGitCommit() string

func (*VersionInfo) GetGoVersion

func (x *VersionInfo) GetGoVersion() string

func (*VersionInfo) GetName

func (x *VersionInfo) GetName() string

func (*VersionInfo) GetVersion

func (x *VersionInfo) GetVersion() string

func (*VersionInfo) ProtoMessage

func (*VersionInfo) ProtoMessage()

func (*VersionInfo) ProtoReflect

func (x *VersionInfo) ProtoReflect() protoreflect.Message

func (*VersionInfo) Reset

func (x *VersionInfo) Reset()

func (*VersionInfo) String

func (x *VersionInfo) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL