Documentation
¶
Index ¶
- Variables
- func GenerateMultipleValidatorStatusResponse(pubkeys [][]byte) *zondpb.MultipleValidatorStatusResponse
- type FakeValidator
- func (fv *FakeValidator) BalancesByPubkeys(_ context.Context) map[[field_params.DilithiumPubkeyLength]byte]uint64
- func (fv *FakeValidator) CanonicalHeadSlot(_ context.Context) (primitives.Slot, error)
- func (*FakeValidator) CheckDoppelGanger(_ context.Context) error
- func (fv *FakeValidator) Done()
- func (fv *FakeValidator) HandleKeyReload(_ context.Context, newKeys [][field_params.DilithiumPubkeyLength]byte) (anyActive bool, err error)
- func (*FakeValidator) HasProposerSettings() bool
- func (fv *FakeValidator) IndicesToPubkeys(_ context.Context) map[uint64][field_params.DilithiumPubkeyLength]byte
- func (fv *FakeValidator) Keymanager() (keymanager.IKeymanager, error)
- func (*FakeValidator) LogAttestationsSubmitted()
- func (fv *FakeValidator) LogSyncCommitteeMessagesSubmitted()
- func (fv *FakeValidator) LogValidatorGainsAndLosses(_ context.Context, _ primitives.Slot) error
- func (fv *FakeValidator) NextSlot() <-chan primitives.Slot
- func (fv *FakeValidator) ProposeBlock(_ context.Context, slot primitives.Slot, ...)
- func (f *FakeValidator) ProposerSettings() *validatorserviceconfig.ProposerSettings
- func (fv *FakeValidator) PubkeysToIndices(_ context.Context) map[[field_params.DilithiumPubkeyLength]byte]uint64
- func (fv *FakeValidator) PubkeysToStatuses(_ context.Context) map[[field_params.DilithiumPubkeyLength]byte]zondpb.ValidatorStatus
- func (fv *FakeValidator) PushProposerSettings(ctx context.Context, km keymanager.IKeymanager, slot primitives.Slot, ...) error
- func (fv *FakeValidator) ReceiveBlocks(_ context.Context, connectionErrorChannel chan<- error)
- func (fv *FakeValidator) ResetAttesterProtectionData()
- func (fv *FakeValidator) RolesAt(_ context.Context, slot primitives.Slot) (map[[field_params.DilithiumPubkeyLength]byte][]iface.ValidatorRole, error)
- func (f *FakeValidator) SetProposerSettings(_ context.Context, settings *validatorserviceconfig.ProposerSettings) error
- func (*FakeValidator) SetPubKeyToValidatorIndexMap(_ context.Context, _ keymanager.IKeymanager) error
- func (*FakeValidator) SignValidatorRegistrationRequest(_ context.Context, _ iface.SigningFunc, _ *zondpb.ValidatorRegistrationV1) (*zondpb.SignedValidatorRegistrationV1, error)
- func (fv *FakeValidator) SlasherReady(_ context.Context) error
- func (fv *FakeValidator) SlotDeadline(_ primitives.Slot) time.Time
- func (*FakeValidator) SubmitAggregateAndProof(_ context.Context, _ primitives.Slot, ...)
- func (fv *FakeValidator) SubmitAttestation(_ context.Context, slot primitives.Slot, ...)
- func (*FakeValidator) SubmitSignedContributionAndProof(_ context.Context, _ primitives.Slot, ...)
- func (*FakeValidator) SubmitSyncCommitteeMessage(_ context.Context, _ primitives.Slot, ...)
- func (*FakeValidator) UpdateDomainDataCaches(context.Context, primitives.Slot)
- func (fv *FakeValidator) UpdateDuties(_ context.Context, slot primitives.Slot) error
- func (fv *FakeValidator) UpdateProtections(_ context.Context, _ uint64) error
- func (fv *FakeValidator) WaitForActivation(_ context.Context, accountChan chan [][field_params.DilithiumPubkeyLength]byte) error
- func (fv *FakeValidator) WaitForChainStart(_ context.Context) error
- func (fv *FakeValidator) WaitForKeymanagerInitialization(_ context.Context) error
- func (fv *FakeValidator) WaitForSync(_ context.Context) error
Constants ¶
This section is empty.
Variables ¶
var ActiveKey = bytesutil.ToBytes2592([]byte("active"))
ActiveKey represents a public key whose status is ACTIVE.
Functions ¶
func GenerateMultipleValidatorStatusResponse ¶
func GenerateMultipleValidatorStatusResponse(pubkeys [][]byte) *zondpb.MultipleValidatorStatusResponse
GenerateMultipleValidatorStatusResponse prepares a response from the passed in keys.
Types ¶
type FakeValidator ¶
type FakeValidator struct {
DoneCalled bool
WaitForWalletInitializationCalled bool
SlasherReadyCalled bool
NextSlotCalled bool
UpdateDutiesCalled bool
UpdateProtectionsCalled bool
RoleAtCalled bool
AttestToBlockHeadCalled bool
ProposeBlockCalled bool
LogValidatorGainsAndLossesCalled bool
SaveProtectionsCalled bool
DeleteProtectionCalled bool
SlotDeadlineCalled bool
HandleKeyReloadCalled bool
WaitForChainStartCalled int
WaitForSyncCalled int
WaitForActivationCalled int
CanonicalHeadSlotCalled int
ReceiveBlocksCalled int
RetryTillSuccess int
ProposeBlockArg1 uint64
AttestToBlockHeadArg1 uint64
RoleAtArg1 uint64
UpdateDutiesArg1 uint64
NextSlotRet <-chan primitives.Slot
PublicKey string
UpdateDutiesRet error
ProposerSettingsErr error
RolesAtRet []iface.ValidatorRole
Balances map[[field_params.DilithiumPubkeyLength]byte]uint64
IndexToPubkeyMap map[uint64][field_params.DilithiumPubkeyLength]byte
PubkeyToIndexMap map[[field_params.DilithiumPubkeyLength]byte]uint64
PubkeysToStatusesMap map[[field_params.DilithiumPubkeyLength]byte]zondpb.ValidatorStatus
ProposerSettingWait time.Duration
Km keymanager.IKeymanager
// contains filtered or unexported fields
}
FakeValidator for mocking.
func (*FakeValidator) BalancesByPubkeys ¶
func (fv *FakeValidator) BalancesByPubkeys(_ context.Context) map[[field_params.DilithiumPubkeyLength]byte]uint64
BalancesByPubkeys for mocking.
func (*FakeValidator) CanonicalHeadSlot ¶
func (fv *FakeValidator) CanonicalHeadSlot(_ context.Context) (primitives.Slot, error)
CanonicalHeadSlot for mocking.
func (*FakeValidator) CheckDoppelGanger ¶
func (*FakeValidator) CheckDoppelGanger(_ context.Context) error
CheckDoppelGanger for mocking
func (*FakeValidator) HandleKeyReload ¶
func (fv *FakeValidator) HandleKeyReload(_ context.Context, newKeys [][field_params.DilithiumPubkeyLength]byte) (anyActive bool, err error)
HandleKeyReload for mocking
func (*FakeValidator) HasProposerSettings ¶
func (*FakeValidator) HasProposerSettings() bool
HasProposerSettings for mocking
func (*FakeValidator) IndicesToPubkeys ¶
func (fv *FakeValidator) IndicesToPubkeys(_ context.Context) map[uint64][field_params.DilithiumPubkeyLength]byte
IndicesToPubkeys for mocking.
func (*FakeValidator) Keymanager ¶
func (fv *FakeValidator) Keymanager() (keymanager.IKeymanager, error)
Keymanager for mocking
func (*FakeValidator) LogAttestationsSubmitted ¶
func (*FakeValidator) LogAttestationsSubmitted()
LogAttestationsSubmitted for mocking.
func (*FakeValidator) LogSyncCommitteeMessagesSubmitted ¶
func (fv *FakeValidator) LogSyncCommitteeMessagesSubmitted()
LogSyncCommitteeMessagesSubmitted --
func (*FakeValidator) LogValidatorGainsAndLosses ¶
func (fv *FakeValidator) LogValidatorGainsAndLosses(_ context.Context, _ primitives.Slot) error
LogValidatorGainsAndLosses for mocking.
func (*FakeValidator) NextSlot ¶
func (fv *FakeValidator) NextSlot() <-chan primitives.Slot
NextSlot for mocking.
func (*FakeValidator) ProposeBlock ¶
func (fv *FakeValidator) ProposeBlock(_ context.Context, slot primitives.Slot, _ [field_params.DilithiumPubkeyLength]byte)
ProposeBlock for mocking.
func (*FakeValidator) ProposerSettings ¶
func (f *FakeValidator) ProposerSettings() *validatorserviceconfig.ProposerSettings
ProposerSettings for mocking
func (*FakeValidator) PubkeysToIndices ¶
func (fv *FakeValidator) PubkeysToIndices(_ context.Context) map[[field_params.DilithiumPubkeyLength]byte]uint64
PubkeysToIndices for mocking.
func (*FakeValidator) PubkeysToStatuses ¶
func (fv *FakeValidator) PubkeysToStatuses(_ context.Context) map[[field_params.DilithiumPubkeyLength]byte]zondpb.ValidatorStatus
PubkeysToStatuses for mocking.
func (*FakeValidator) PushProposerSettings ¶
func (fv *FakeValidator) PushProposerSettings(ctx context.Context, km keymanager.IKeymanager, slot primitives.Slot, deadline time.Time) error
PushProposerSettings for mocking
func (*FakeValidator) ReceiveBlocks ¶
func (fv *FakeValidator) ReceiveBlocks(_ context.Context, connectionErrorChannel chan<- error)
ReceiveBlocks for mocking
func (*FakeValidator) ResetAttesterProtectionData ¶
func (fv *FakeValidator) ResetAttesterProtectionData()
ResetAttesterProtectionData for mocking.
func (*FakeValidator) RolesAt ¶
func (fv *FakeValidator) RolesAt(_ context.Context, slot primitives.Slot) (map[[field_params.DilithiumPubkeyLength]byte][]iface.ValidatorRole, error)
RolesAt for mocking.
func (*FakeValidator) SetProposerSettings ¶
func (f *FakeValidator) SetProposerSettings(_ context.Context, settings *validatorserviceconfig.ProposerSettings) error
SetProposerSettings for mocking
func (*FakeValidator) SetPubKeyToValidatorIndexMap ¶
func (*FakeValidator) SetPubKeyToValidatorIndexMap(_ context.Context, _ keymanager.IKeymanager) error
SetPubKeyToValidatorIndexMap for mocking
func (*FakeValidator) SignValidatorRegistrationRequest ¶
func (*FakeValidator) SignValidatorRegistrationRequest(_ context.Context, _ iface.SigningFunc, _ *zondpb.ValidatorRegistrationV1) (*zondpb.SignedValidatorRegistrationV1, error)
SignValidatorRegistrationRequest for mocking
func (*FakeValidator) SlasherReady ¶
func (fv *FakeValidator) SlasherReady(_ context.Context) error
SlasherReady for mocking.
func (*FakeValidator) SlotDeadline ¶
func (fv *FakeValidator) SlotDeadline(_ primitives.Slot) time.Time
SlotDeadline for mocking.
func (*FakeValidator) SubmitAggregateAndProof ¶
func (*FakeValidator) SubmitAggregateAndProof(_ context.Context, _ primitives.Slot, _ [field_params.DilithiumPubkeyLength]byte)
SubmitAggregateAndProof for mocking.
func (*FakeValidator) SubmitAttestation ¶
func (fv *FakeValidator) SubmitAttestation(_ context.Context, slot primitives.Slot, _ [field_params.DilithiumPubkeyLength]byte)
SubmitAttestation for mocking.
func (*FakeValidator) SubmitSignedContributionAndProof ¶
func (*FakeValidator) SubmitSignedContributionAndProof(_ context.Context, _ primitives.Slot, _ [field_params.DilithiumPubkeyLength]byte)
SubmitSignedContributionAndProof for mocking
func (*FakeValidator) SubmitSyncCommitteeMessage ¶
func (*FakeValidator) SubmitSyncCommitteeMessage(_ context.Context, _ primitives.Slot, _ [field_params.DilithiumPubkeyLength]byte)
SubmitSyncCommitteeMessage for mocking.
func (*FakeValidator) UpdateDomainDataCaches ¶
func (*FakeValidator) UpdateDomainDataCaches(context.Context, primitives.Slot)
UpdateDomainDataCaches for mocking.
func (*FakeValidator) UpdateDuties ¶
func (fv *FakeValidator) UpdateDuties(_ context.Context, slot primitives.Slot) error
UpdateDuties for mocking.
func (*FakeValidator) UpdateProtections ¶
func (fv *FakeValidator) UpdateProtections(_ context.Context, _ uint64) error
UpdateProtections for mocking.
func (*FakeValidator) WaitForActivation ¶
func (fv *FakeValidator) WaitForActivation(_ context.Context, accountChan chan [][field_params.DilithiumPubkeyLength]byte) error
WaitForActivation for mocking.
func (*FakeValidator) WaitForChainStart ¶
func (fv *FakeValidator) WaitForChainStart(_ context.Context) error
WaitForChainStart for mocking.
func (*FakeValidator) WaitForKeymanagerInitialization ¶
func (fv *FakeValidator) WaitForKeymanagerInitialization(_ context.Context) error
WaitForKeymanagerInitialization for mocking.
func (*FakeValidator) WaitForSync ¶
func (fv *FakeValidator) WaitForSync(_ context.Context) error
WaitForSync for mocking.