mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 17:22:18 +00:00
8aa909de2d
* Implement validator endpoints * Import * Fix errors * Add comments and fix naming :wq * Fix functions to access state once * Optimization for slots * Test more * Fix * test listing committees for specific epoch * Fix error retrurn Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: rkapka <rkapka@wp.pl>
164 lines
6.0 KiB
Go
164 lines
6.0 KiB
Go
package beaconv1
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strconv"
|
|
|
|
"github.com/pkg/errors"
|
|
types "github.com/prysmaticlabs/eth2-types"
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/helpers"
|
|
iface "github.com/prysmaticlabs/prysm/beacon-chain/state/interface"
|
|
"github.com/prysmaticlabs/prysm/proto/migration"
|
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
)
|
|
|
|
// GetValidator returns a validator specified by state and id or public key along with status and balance.
|
|
func (bs *Server) GetValidator(ctx context.Context, req *ethpb.StateValidatorRequest) (*ethpb.StateValidatorResponse, error) {
|
|
state, err := bs.StateFetcher.State(ctx, req.StateId)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not get state: %v", err)
|
|
}
|
|
if len(req.ValidatorId) == 0 {
|
|
return nil, status.Error(codes.Internal, "Must request a validator id")
|
|
}
|
|
valContainer, err := valContainersByRequestIds(state, [][]byte{req.ValidatorId})
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not get validator container: %v", err)
|
|
}
|
|
return ðpb.StateValidatorResponse{Data: valContainer[0]}, nil
|
|
}
|
|
|
|
// ListValidators returns filterable list of validators with their balance, status and index.
|
|
// TODO(#8901): missing status support.
|
|
func (bs *Server) ListValidators(ctx context.Context, req *ethpb.StateValidatorsRequest) (*ethpb.StateValidatorsResponse, error) {
|
|
state, err := bs.StateFetcher.State(ctx, req.StateId)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not get state: %v", err)
|
|
}
|
|
|
|
valContainers, err := valContainersByRequestIds(state, req.Id)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not get validator container: %v", err)
|
|
}
|
|
|
|
return ðpb.StateValidatorsResponse{Data: valContainers}, nil
|
|
}
|
|
|
|
// ListValidatorBalances returns a filterable list of validator balances.
|
|
func (bs *Server) ListValidatorBalances(ctx context.Context, req *ethpb.ValidatorBalancesRequest) (*ethpb.ValidatorBalancesResponse, error) {
|
|
state, err := bs.StateFetcher.State(ctx, req.StateId)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not get state: %v", err)
|
|
}
|
|
|
|
valContainers, err := valContainersByRequestIds(state, req.Id)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not get validator: %v", err)
|
|
}
|
|
valBalances := make([]*ethpb.ValidatorBalance, len(valContainers))
|
|
for i := 0; i < len(valContainers); i++ {
|
|
valBalances[i] = ðpb.ValidatorBalance{
|
|
Index: valContainers[i].Index,
|
|
Balance: valContainers[i].Balance,
|
|
}
|
|
}
|
|
return ðpb.ValidatorBalancesResponse{Data: valBalances}, nil
|
|
}
|
|
|
|
// ListCommittees retrieves the committees for the given state at the given epoch.
|
|
// If the requested slot and index are defined, only those committees are returned.
|
|
func (bs *Server) ListCommittees(ctx context.Context, req *ethpb.StateCommitteesRequest) (*ethpb.StateCommitteesResponse, error) {
|
|
state, err := bs.StateFetcher.State(ctx, req.StateId)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not get state: %v", err)
|
|
}
|
|
|
|
epoch := helpers.SlotToEpoch(state.Slot())
|
|
if req.Epoch != nil {
|
|
epoch = *req.Epoch
|
|
}
|
|
activeCount, err := helpers.ActiveValidatorCount(state, epoch)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not get active validator count: %v", err)
|
|
}
|
|
|
|
startSlot, err := helpers.StartSlot(epoch)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not get epoch start slot: %v", err)
|
|
}
|
|
endSlot, err := helpers.EndSlot(epoch)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not get epoch end slot: %v", err)
|
|
}
|
|
committeesPerSlot := helpers.SlotCommitteeCount(activeCount)
|
|
committees := make([]*ethpb.Committee, 0)
|
|
for slot := startSlot; slot <= endSlot; slot++ {
|
|
if req.Slot != nil && slot != *req.Slot {
|
|
continue
|
|
}
|
|
for index := types.CommitteeIndex(0); index < types.CommitteeIndex(committeesPerSlot); index++ {
|
|
if req.Index != nil && index != *req.Index {
|
|
continue
|
|
}
|
|
committee, err := helpers.BeaconCommitteeFromState(state, slot, index)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not get committee: %v", err)
|
|
}
|
|
committeeContainer := ðpb.Committee{
|
|
Index: index,
|
|
Slot: slot,
|
|
Validators: committee,
|
|
}
|
|
committees = append(committees, committeeContainer)
|
|
}
|
|
}
|
|
return ðpb.StateCommitteesResponse{Data: committees}, nil
|
|
}
|
|
|
|
// This function returns the validator object based on the passed in ID. The validator ID could be its public key,
|
|
// or its index.
|
|
func valContainersByRequestIds(state iface.BeaconState, validatorIds [][]byte) ([]*ethpb.ValidatorContainer, error) {
|
|
allValidators := state.Validators()
|
|
allBalances := state.Balances()
|
|
var valContainers []*ethpb.ValidatorContainer
|
|
if len(validatorIds) == 0 {
|
|
valContainers = make([]*ethpb.ValidatorContainer, len(allValidators))
|
|
for i, validator := range allValidators {
|
|
valContainers[i] = ðpb.ValidatorContainer{
|
|
Index: types.ValidatorIndex(i),
|
|
Balance: allBalances[i],
|
|
Validator: migration.V1Alpha1ValidatorToV1(validator),
|
|
}
|
|
}
|
|
} else {
|
|
valContainers = make([]*ethpb.ValidatorContainer, len(validatorIds))
|
|
for i, validatorId := range validatorIds {
|
|
var valIndex types.ValidatorIndex
|
|
if len(validatorId) == params.BeaconConfig().BLSPubkeyLength {
|
|
var ok bool
|
|
valIndex, ok = state.ValidatorIndexByPubkey(bytesutil.ToBytes48(validatorId))
|
|
if !ok {
|
|
return nil, fmt.Errorf("could not find validator with public key: %#x", validatorId)
|
|
}
|
|
} else {
|
|
index, err := strconv.ParseUint(string(validatorId), 10, 64)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "could not decode validator id")
|
|
}
|
|
valIndex = types.ValidatorIndex(index)
|
|
}
|
|
valContainers[i] = ðpb.ValidatorContainer{
|
|
Index: valIndex,
|
|
Balance: allBalances[valIndex],
|
|
Validator: migration.V1Alpha1ValidatorToV1(allValidators[valIndex]),
|
|
}
|
|
}
|
|
}
|
|
return valContainers, nil
|
|
}
|