Documentation ¶
Overview ¶
Code generated by protoc-gen-go-pulsar. DO NOT EDIT.
Index ¶
- Constants
- Variables
- func RegisterServiceServer(s grpc.ServiceRegistrar, srv ServiceServer)
- type ConfigRequest
- type ConfigResponse
- func (*ConfigResponse) Descriptor() ([]byte, []int)deprecated
- func (x *ConfigResponse) GetMinimumGasPrice() string
- func (x *ConfigResponse) GetPruningInterval() string
- func (x *ConfigResponse) GetPruningKeepRecent() string
- func (*ConfigResponse) ProtoMessage()
- func (x *ConfigResponse) ProtoReflect() protoreflect.Message
- func (x *ConfigResponse) Reset()
- func (x *ConfigResponse) String() string
- type ServiceClient
- type ServiceServer
- type StatusRequest
- type StatusResponse
- func (*StatusResponse) Descriptor() ([]byte, []int)deprecated
- func (x *StatusResponse) GetAppHash() []byte
- func (x *StatusResponse) GetEarliestStoreHeight() uint64
- func (x *StatusResponse) GetHeight() uint64
- func (x *StatusResponse) GetTimestamp() *timestamppb.Timestamp
- func (x *StatusResponse) GetValidatorHash() []byte
- func (*StatusResponse) ProtoMessage()
- func (x *StatusResponse) ProtoReflect() protoreflect.Message
- func (x *StatusResponse) Reset()
- func (x *StatusResponse) String() string
- type UnimplementedServiceServer
- type UnsafeServiceServer
Constants ¶
const ( Service_Config_FullMethodName = "/cosmos.base.node.v1beta1.Service/Config" Service_Status_FullMethodName = "/cosmos.base.node.v1beta1.Service/Status" )
Variables ¶
var File_cosmos_base_node_v1beta1_query_proto protoreflect.FileDescriptor
var Service_ServiceDesc = grpc.ServiceDesc{ ServiceName: "cosmos.base.node.v1beta1.Service", HandlerType: (*ServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "Config", Handler: _Service_Config_Handler, }, { MethodName: "Status", Handler: _Service_Status_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "cosmos/base/node/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 ConfigRequest ¶
type ConfigRequest struct {
// contains filtered or unexported fields
}
ConfigRequest defines the request structure for the Config gRPC query.
func (*ConfigRequest) Descriptor
deprecated
func (*ConfigRequest) Descriptor() ([]byte, []int)
Deprecated: Use ConfigRequest.ProtoReflect.Descriptor instead.
func (*ConfigRequest) ProtoMessage ¶
func (*ConfigRequest) ProtoMessage()
func (*ConfigRequest) ProtoReflect ¶
func (x *ConfigRequest) ProtoReflect() protoreflect.Message
func (*ConfigRequest) Reset ¶
func (x *ConfigRequest) Reset()
func (*ConfigRequest) String ¶
func (x *ConfigRequest) String() string
type ConfigResponse ¶
type ConfigResponse struct { MinimumGasPrice string `protobuf:"bytes,1,opt,name=minimum_gas_price,json=minimumGasPrice,proto3" json:"minimum_gas_price,omitempty"` // pruning settings PruningKeepRecent string `protobuf:"bytes,2,opt,name=pruning_keep_recent,json=pruningKeepRecent,proto3" json:"pruning_keep_recent,omitempty"` PruningInterval string `protobuf:"bytes,3,opt,name=pruning_interval,json=pruningInterval,proto3" json:"pruning_interval,omitempty"` // contains filtered or unexported fields }
ConfigResponse defines the response structure for the Config gRPC query.
func (*ConfigResponse) Descriptor
deprecated
func (*ConfigResponse) Descriptor() ([]byte, []int)
Deprecated: Use ConfigResponse.ProtoReflect.Descriptor instead.
func (*ConfigResponse) GetMinimumGasPrice ¶
func (x *ConfigResponse) GetMinimumGasPrice() string
func (*ConfigResponse) GetPruningInterval ¶ added in v0.4.1
func (x *ConfigResponse) GetPruningInterval() string
func (*ConfigResponse) GetPruningKeepRecent ¶ added in v0.4.1
func (x *ConfigResponse) GetPruningKeepRecent() string
func (*ConfigResponse) ProtoMessage ¶
func (*ConfigResponse) ProtoMessage()
func (*ConfigResponse) ProtoReflect ¶
func (x *ConfigResponse) ProtoReflect() protoreflect.Message
func (*ConfigResponse) Reset ¶
func (x *ConfigResponse) Reset()
func (*ConfigResponse) String ¶
func (x *ConfigResponse) String() string
type ServiceClient ¶
type ServiceClient interface { // Config queries for the operator configuration. Config(ctx context.Context, in *ConfigRequest, opts ...grpc.CallOption) (*ConfigResponse, error) // Status queries for the node status. Status(ctx context.Context, in *StatusRequest, opts ...grpc.CallOption) (*StatusResponse, 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 { // Config queries for the operator configuration. Config(context.Context, *ConfigRequest) (*ConfigResponse, error) // Status queries for the node status. Status(context.Context, *StatusRequest) (*StatusResponse, error) // contains filtered or unexported methods }
ServiceServer is the server API for Service service. All implementations must embed UnimplementedServiceServer for forward compatibility
type StatusRequest ¶ added in v0.4.1
type StatusRequest struct {
// contains filtered or unexported fields
}
StateRequest defines the request structure for the status of a node.
func (*StatusRequest) Descriptor
deprecated
added in
v0.4.1
func (*StatusRequest) Descriptor() ([]byte, []int)
Deprecated: Use StatusRequest.ProtoReflect.Descriptor instead.
func (*StatusRequest) ProtoMessage ¶ added in v0.4.1
func (*StatusRequest) ProtoMessage()
func (*StatusRequest) ProtoReflect ¶ added in v0.4.1
func (x *StatusRequest) ProtoReflect() protoreflect.Message
func (*StatusRequest) Reset ¶ added in v0.4.1
func (x *StatusRequest) Reset()
func (*StatusRequest) String ¶ added in v0.4.1
func (x *StatusRequest) String() string
type StatusResponse ¶ added in v0.4.1
type StatusResponse struct { EarliestStoreHeight uint64 `protobuf:"varint,1,opt,name=earliest_store_height,json=earliestStoreHeight,proto3" json:"earliest_store_height,omitempty"` // earliest block height available in the store Height uint64 `protobuf:"varint,2,opt,name=height,proto3" json:"height,omitempty"` // current block height Timestamp *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"` // block height timestamp AppHash []byte `protobuf:"bytes,4,opt,name=app_hash,json=appHash,proto3" json:"app_hash,omitempty"` // app hash of the current block ValidatorHash []byte `protobuf:"bytes,5,opt,name=validator_hash,json=validatorHash,proto3" json:"validator_hash,omitempty"` // validator hash provided by the consensus header // contains filtered or unexported fields }
StateResponse defines the response structure for the status of a node.
func (*StatusResponse) Descriptor
deprecated
added in
v0.4.1
func (*StatusResponse) Descriptor() ([]byte, []int)
Deprecated: Use StatusResponse.ProtoReflect.Descriptor instead.
func (*StatusResponse) GetAppHash ¶ added in v0.4.1
func (x *StatusResponse) GetAppHash() []byte
func (*StatusResponse) GetEarliestStoreHeight ¶ added in v0.4.1
func (x *StatusResponse) GetEarliestStoreHeight() uint64
func (*StatusResponse) GetHeight ¶ added in v0.4.1
func (x *StatusResponse) GetHeight() uint64
func (*StatusResponse) GetTimestamp ¶ added in v0.4.1
func (x *StatusResponse) GetTimestamp() *timestamppb.Timestamp
func (*StatusResponse) GetValidatorHash ¶ added in v0.4.1
func (x *StatusResponse) GetValidatorHash() []byte
func (*StatusResponse) ProtoMessage ¶ added in v0.4.1
func (*StatusResponse) ProtoMessage()
func (*StatusResponse) ProtoReflect ¶ added in v0.4.1
func (x *StatusResponse) ProtoReflect() protoreflect.Message
func (*StatusResponse) Reset ¶ added in v0.4.1
func (x *StatusResponse) Reset()
func (*StatusResponse) String ¶ added in v0.4.1
func (x *StatusResponse) String() string
type UnimplementedServiceServer ¶
type UnimplementedServiceServer struct { }
UnimplementedServiceServer must be embedded to have forward compatible implementations.
func (UnimplementedServiceServer) Config ¶
func (UnimplementedServiceServer) Config(context.Context, *ConfigRequest) (*ConfigResponse, error)
func (UnimplementedServiceServer) Status ¶ added in v0.4.1
func (UnimplementedServiceServer) Status(context.Context, *StatusRequest) (*StatusResponse, error)
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.