validatorstate

package
v1.12.1-rc.1 Latest Latest
Warning

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

Go to latest
Published: Dec 17, 2024 License: BSD-3-Clause Imports: 9 Imported by: 4

Documentation

Index

Constants

View Source
const (
	ValidatorState_GetMinimumHeight_FullMethodName       = "/validatorstate.ValidatorState/GetMinimumHeight"
	ValidatorState_GetCurrentHeight_FullMethodName       = "/validatorstate.ValidatorState/GetCurrentHeight"
	ValidatorState_GetSubnetID_FullMethodName            = "/validatorstate.ValidatorState/GetSubnetID"
	ValidatorState_GetValidatorSet_FullMethodName        = "/validatorstate.ValidatorState/GetValidatorSet"
	ValidatorState_GetCurrentValidatorSet_FullMethodName = "/validatorstate.ValidatorState/GetCurrentValidatorSet"
)

Variables

View Source
var File_validatorstate_validator_state_proto protoreflect.FileDescriptor
View Source
var ValidatorState_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "validatorstate.ValidatorState",
	HandlerType: (*ValidatorStateServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetMinimumHeight",
			Handler:    _ValidatorState_GetMinimumHeight_Handler,
		},
		{
			MethodName: "GetCurrentHeight",
			Handler:    _ValidatorState_GetCurrentHeight_Handler,
		},
		{
			MethodName: "GetSubnetID",
			Handler:    _ValidatorState_GetSubnetID_Handler,
		},
		{
			MethodName: "GetValidatorSet",
			Handler:    _ValidatorState_GetValidatorSet_Handler,
		},
		{
			MethodName: "GetCurrentValidatorSet",
			Handler:    _ValidatorState_GetCurrentValidatorSet_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "validatorstate/validator_state.proto",
}

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

Functions

func RegisterValidatorStateServer

func RegisterValidatorStateServer(s grpc.ServiceRegistrar, srv ValidatorStateServer)

Types

type GetCurrentHeightResponse

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

func (*GetCurrentHeightResponse) Descriptor deprecated

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

Deprecated: Use GetCurrentHeightResponse.ProtoReflect.Descriptor instead.

func (*GetCurrentHeightResponse) GetHeight

func (x *GetCurrentHeightResponse) GetHeight() uint64

func (*GetCurrentHeightResponse) ProtoMessage

func (*GetCurrentHeightResponse) ProtoMessage()

func (*GetCurrentHeightResponse) ProtoReflect

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

func (*GetCurrentHeightResponse) Reset

func (x *GetCurrentHeightResponse) Reset()

func (*GetCurrentHeightResponse) String

func (x *GetCurrentHeightResponse) String() string

type GetCurrentValidatorSetRequest added in v1.11.13

type GetCurrentValidatorSetRequest struct {
	SubnetId []byte `protobuf:"bytes,1,opt,name=subnet_id,json=subnetId,proto3" json:"subnet_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCurrentValidatorSetRequest) Descriptor deprecated added in v1.11.13

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

Deprecated: Use GetCurrentValidatorSetRequest.ProtoReflect.Descriptor instead.

func (*GetCurrentValidatorSetRequest) GetSubnetId added in v1.11.13

func (x *GetCurrentValidatorSetRequest) GetSubnetId() []byte

func (*GetCurrentValidatorSetRequest) ProtoMessage added in v1.11.13

func (*GetCurrentValidatorSetRequest) ProtoMessage()

func (*GetCurrentValidatorSetRequest) ProtoReflect added in v1.11.13

func (*GetCurrentValidatorSetRequest) Reset added in v1.11.13

func (x *GetCurrentValidatorSetRequest) Reset()

func (*GetCurrentValidatorSetRequest) String added in v1.11.13

type GetCurrentValidatorSetResponse added in v1.11.13

type GetCurrentValidatorSetResponse struct {
	Validators    []*Validator `protobuf:"bytes,1,rep,name=validators,proto3" json:"validators,omitempty"`
	CurrentHeight uint64       `protobuf:"varint,2,opt,name=current_height,json=currentHeight,proto3" json:"current_height,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCurrentValidatorSetResponse) Descriptor deprecated added in v1.11.13

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

Deprecated: Use GetCurrentValidatorSetResponse.ProtoReflect.Descriptor instead.

func (*GetCurrentValidatorSetResponse) GetCurrentHeight added in v1.11.13

func (x *GetCurrentValidatorSetResponse) GetCurrentHeight() uint64

func (*GetCurrentValidatorSetResponse) GetValidators added in v1.11.13

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

func (*GetCurrentValidatorSetResponse) ProtoMessage added in v1.11.13

func (*GetCurrentValidatorSetResponse) ProtoMessage()

func (*GetCurrentValidatorSetResponse) ProtoReflect added in v1.11.13

func (*GetCurrentValidatorSetResponse) Reset added in v1.11.13

func (x *GetCurrentValidatorSetResponse) Reset()

func (*GetCurrentValidatorSetResponse) String added in v1.11.13

type GetMinimumHeightResponse

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

func (*GetMinimumHeightResponse) Descriptor deprecated

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

Deprecated: Use GetMinimumHeightResponse.ProtoReflect.Descriptor instead.

func (*GetMinimumHeightResponse) GetHeight

func (x *GetMinimumHeightResponse) GetHeight() uint64

func (*GetMinimumHeightResponse) ProtoMessage

func (*GetMinimumHeightResponse) ProtoMessage()

func (*GetMinimumHeightResponse) ProtoReflect

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

func (*GetMinimumHeightResponse) Reset

func (x *GetMinimumHeightResponse) Reset()

func (*GetMinimumHeightResponse) String

func (x *GetMinimumHeightResponse) String() string

type GetSubnetIDRequest added in v1.9.5

type GetSubnetIDRequest struct {
	ChainId []byte `protobuf:"bytes,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetSubnetIDRequest) Descriptor deprecated added in v1.9.5

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

Deprecated: Use GetSubnetIDRequest.ProtoReflect.Descriptor instead.

func (*GetSubnetIDRequest) GetChainId added in v1.9.5

func (x *GetSubnetIDRequest) GetChainId() []byte

func (*GetSubnetIDRequest) ProtoMessage added in v1.9.5

func (*GetSubnetIDRequest) ProtoMessage()

func (*GetSubnetIDRequest) ProtoReflect added in v1.9.5

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

func (*GetSubnetIDRequest) Reset added in v1.9.5

func (x *GetSubnetIDRequest) Reset()

func (*GetSubnetIDRequest) String added in v1.9.5

func (x *GetSubnetIDRequest) String() string

type GetSubnetIDResponse added in v1.9.5

type GetSubnetIDResponse struct {
	SubnetId []byte `protobuf:"bytes,1,opt,name=subnet_id,json=subnetId,proto3" json:"subnet_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetSubnetIDResponse) Descriptor deprecated added in v1.9.5

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

Deprecated: Use GetSubnetIDResponse.ProtoReflect.Descriptor instead.

func (*GetSubnetIDResponse) GetSubnetId added in v1.9.5

func (x *GetSubnetIDResponse) GetSubnetId() []byte

func (*GetSubnetIDResponse) ProtoMessage added in v1.9.5

func (*GetSubnetIDResponse) ProtoMessage()

func (*GetSubnetIDResponse) ProtoReflect added in v1.9.5

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

func (*GetSubnetIDResponse) Reset added in v1.9.5

func (x *GetSubnetIDResponse) Reset()

func (*GetSubnetIDResponse) String added in v1.9.5

func (x *GetSubnetIDResponse) String() string

type GetValidatorSetRequest

type GetValidatorSetRequest struct {
	Height   uint64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	SubnetId []byte `protobuf:"bytes,2,opt,name=subnet_id,json=subnetId,proto3" json:"subnet_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetValidatorSetRequest) Descriptor deprecated

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

Deprecated: Use GetValidatorSetRequest.ProtoReflect.Descriptor instead.

func (*GetValidatorSetRequest) GetHeight

func (x *GetValidatorSetRequest) GetHeight() uint64

func (*GetValidatorSetRequest) GetSubnetId

func (x *GetValidatorSetRequest) GetSubnetId() []byte

func (*GetValidatorSetRequest) ProtoMessage

func (*GetValidatorSetRequest) ProtoMessage()

func (*GetValidatorSetRequest) ProtoReflect

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

func (*GetValidatorSetRequest) Reset

func (x *GetValidatorSetRequest) Reset()

func (*GetValidatorSetRequest) String

func (x *GetValidatorSetRequest) String() string

type GetValidatorSetResponse

type GetValidatorSetResponse struct {
	Validators []*Validator `protobuf:"bytes,1,rep,name=validators,proto3" json:"validators,omitempty"`
	// contains filtered or unexported fields
}

func (*GetValidatorSetResponse) Descriptor deprecated

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

Deprecated: Use GetValidatorSetResponse.ProtoReflect.Descriptor instead.

func (*GetValidatorSetResponse) GetValidators

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

func (*GetValidatorSetResponse) ProtoMessage

func (*GetValidatorSetResponse) ProtoMessage()

func (*GetValidatorSetResponse) ProtoReflect

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

func (*GetValidatorSetResponse) Reset

func (x *GetValidatorSetResponse) Reset()

func (*GetValidatorSetResponse) String

func (x *GetValidatorSetResponse) String() string

type UnimplementedValidatorStateServer

type UnimplementedValidatorStateServer struct {
}

UnimplementedValidatorStateServer must be embedded to have forward compatible implementations.

func (UnimplementedValidatorStateServer) GetCurrentHeight

func (UnimplementedValidatorStateServer) GetCurrentValidatorSet added in v1.11.13

func (UnimplementedValidatorStateServer) GetMinimumHeight

func (UnimplementedValidatorStateServer) GetSubnetID added in v1.9.5

func (UnimplementedValidatorStateServer) GetValidatorSet

type UnsafeValidatorStateServer

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

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

type Validator

type Validator struct {
	NodeId        []byte `protobuf:"bytes,1,opt,name=node_id,json=nodeId,proto3" json:"node_id,omitempty"`
	Weight        uint64 `protobuf:"varint,2,opt,name=weight,proto3" json:"weight,omitempty"`
	PublicKey     []byte `protobuf:"bytes,3,opt,name=public_key,json=publicKey,proto3" json:"public_key,omitempty"`                // Uncompressed public key, can be empty
	StartTime     uint64 `protobuf:"varint,4,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`               // can be empty
	MinNonce      uint64 `protobuf:"varint,5,opt,name=min_nonce,json=minNonce,proto3" json:"min_nonce,omitempty"`                  // can be empty
	IsActive      bool   `protobuf:"varint,6,opt,name=is_active,json=isActive,proto3" json:"is_active,omitempty"`                  // can be empty
	ValidationId  []byte `protobuf:"bytes,7,opt,name=validation_id,json=validationId,proto3" json:"validation_id,omitempty"`       // can be empty
	IsL1Validator bool   `protobuf:"varint,8,opt,name=is_l1_validator,json=isL1Validator,proto3" json:"is_l1_validator,omitempty"` // can be empty
	// contains filtered or unexported fields
}

func (*Validator) Descriptor deprecated

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

Deprecated: Use Validator.ProtoReflect.Descriptor instead.

func (*Validator) GetIsActive added in v1.11.13

func (x *Validator) GetIsActive() bool

func (*Validator) GetIsL1Validator added in v1.11.13

func (x *Validator) GetIsL1Validator() bool

func (*Validator) GetMinNonce added in v1.11.13

func (x *Validator) GetMinNonce() uint64

func (*Validator) GetNodeId

func (x *Validator) GetNodeId() []byte

func (*Validator) GetPublicKey added in v1.9.4

func (x *Validator) GetPublicKey() []byte

func (*Validator) GetStartTime added in v1.11.13

func (x *Validator) GetStartTime() uint64

func (*Validator) GetValidationId added in v1.11.13

func (x *Validator) GetValidationId() []byte

func (*Validator) GetWeight

func (x *Validator) GetWeight() uint64

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 ValidatorStateClient

type ValidatorStateClient interface {
	// GetMinimumHeight returns the minimum height of the blocks in the optimal
	// proposal window.
	GetMinimumHeight(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*GetMinimumHeightResponse, error)
	// GetCurrentHeight returns the current height of the P-chain.
	GetCurrentHeight(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*GetCurrentHeightResponse, error)
	// GetSubnetID returns the subnetID of the provided chain.
	GetSubnetID(ctx context.Context, in *GetSubnetIDRequest, opts ...grpc.CallOption) (*GetSubnetIDResponse, error)
	// GetValidatorSet returns the weights of the nodeIDs for the provided
	// subnet at the requested P-chain height.
	GetValidatorSet(ctx context.Context, in *GetValidatorSetRequest, opts ...grpc.CallOption) (*GetValidatorSetResponse, error)
	// GetCurrentValidatorSet returns the validator set for the provided subnet at
	// the current P-chain height.
	GetCurrentValidatorSet(ctx context.Context, in *GetCurrentValidatorSetRequest, opts ...grpc.CallOption) (*GetCurrentValidatorSetResponse, error)
}

ValidatorStateClient is the client API for ValidatorState 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.

type ValidatorStateServer

type ValidatorStateServer interface {
	// GetMinimumHeight returns the minimum height of the blocks in the optimal
	// proposal window.
	GetMinimumHeight(context.Context, *emptypb.Empty) (*GetMinimumHeightResponse, error)
	// GetCurrentHeight returns the current height of the P-chain.
	GetCurrentHeight(context.Context, *emptypb.Empty) (*GetCurrentHeightResponse, error)
	// GetSubnetID returns the subnetID of the provided chain.
	GetSubnetID(context.Context, *GetSubnetIDRequest) (*GetSubnetIDResponse, error)
	// GetValidatorSet returns the weights of the nodeIDs for the provided
	// subnet at the requested P-chain height.
	GetValidatorSet(context.Context, *GetValidatorSetRequest) (*GetValidatorSetResponse, error)
	// GetCurrentValidatorSet returns the validator set for the provided subnet at
	// the current P-chain height.
	GetCurrentValidatorSet(context.Context, *GetCurrentValidatorSetRequest) (*GetCurrentValidatorSetResponse, error)
	// contains filtered or unexported methods
}

ValidatorStateServer is the server API for ValidatorState service. All implementations must embed UnimplementedValidatorStateServer for forward compatibility

Jump to

Keyboard shortcuts

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