package debug import ( "context" "github.com/prysmaticlabs/prysm/beacon-chain/rpc/eth/helpers" statev1 "github.com/prysmaticlabs/prysm/beacon-chain/state/v1" statev2 "github.com/prysmaticlabs/prysm/beacon-chain/state/v2" ethpbv1 "github.com/prysmaticlabs/prysm/proto/eth/v1" ethpbv2 "github.com/prysmaticlabs/prysm/proto/eth/v2" "github.com/prysmaticlabs/prysm/proto/migration" "github.com/prysmaticlabs/prysm/runtime/version" "go.opencensus.io/trace" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" "google.golang.org/protobuf/types/known/emptypb" ) // GetBeaconState returns the full beacon state for a given state ID. func (ds *Server) GetBeaconState(ctx context.Context, req *ethpbv1.StateRequest) (*ethpbv1.BeaconStateResponse, error) { ctx, span := trace.StartSpan(ctx, "debug.GetBeaconState") defer span.End() beaconSt, err := ds.StateFetcher.State(ctx, req.StateId) if err != nil { return nil, helpers.PrepareStateFetchGRPCError(err) } st, ok := beaconSt.(*statev1.BeaconState) if !ok { return nil, status.Error(codes.Internal, "State type assertion failed") } protoSt, err := migration.BeaconStateToV1(st) if err != nil { return nil, status.Errorf(codes.Internal, "Could not convert state to proto: %v", err) } return ðpbv1.BeaconStateResponse{ Data: protoSt, }, nil } // GetBeaconStateSSZ returns the SSZ-serialized version of the full beacon state object for given state ID. func (ds *Server) GetBeaconStateSSZ(ctx context.Context, req *ethpbv1.StateRequest) (*ethpbv1.BeaconStateSSZResponse, error) { ctx, span := trace.StartSpan(ctx, "debug.GetBeaconStateSSZ") defer span.End() state, err := ds.StateFetcher.State(ctx, req.StateId) if err != nil { return nil, helpers.PrepareStateFetchGRPCError(err) } sszState, err := state.MarshalSSZ() if err != nil { return nil, status.Errorf(codes.Internal, "Could not marshal state into SSZ: %v", err) } return ðpbv1.BeaconStateSSZResponse{Data: sszState}, nil } // GetBeaconStateV2 returns the full beacon state for a given state ID. func (ds *Server) GetBeaconStateV2(ctx context.Context, req *ethpbv2.StateRequestV2) (*ethpbv2.BeaconStateResponseV2, error) { ctx, span := trace.StartSpan(ctx, "debug.GetBeaconStateV2") defer span.End() beaconSt, err := ds.StateFetcher.State(ctx, req.StateId) if err != nil { return nil, helpers.PrepareStateFetchGRPCError(err) } switch beaconSt.Version() { case version.Phase0: st, ok := beaconSt.(*statev1.BeaconState) if !ok { return nil, status.Error(codes.Internal, "State type assertion failed") } protoSt, err := migration.BeaconStateToV1(st) if err != nil { return nil, status.Errorf(codes.Internal, "Could not convert state to proto: %v", err) } return ðpbv2.BeaconStateResponseV2{ Version: ethpbv2.Version_PHASE0, Data: ðpbv2.BeaconStateContainer{ State: ðpbv2.BeaconStateContainer_Phase0State{Phase0State: protoSt}, }, }, nil case version.Altair: altairState, ok := beaconSt.(*statev2.BeaconState) if !ok { return nil, status.Error(codes.Internal, "Altair state type assertion failed") } protoState, err := migration.BeaconStateAltairToV2(altairState) if err != nil { return nil, status.Errorf(codes.Internal, "Could not convert state to proto: %v", err) } return ðpbv2.BeaconStateResponseV2{ Version: ethpbv2.Version_ALTAIR, Data: ðpbv2.BeaconStateContainer{ State: ðpbv2.BeaconStateContainer_AltairState{AltairState: protoState}, }, }, nil default: return nil, status.Error(codes.Internal, "Unsupported state version") } } // GetBeaconStateSSZV2 returns the SSZ-serialized version of the full beacon state object for given state ID. func (ds *Server) GetBeaconStateSSZV2(ctx context.Context, req *ethpbv2.StateRequestV2) (*ethpbv2.BeaconStateSSZResponseV2, error) { ctx, span := trace.StartSpan(ctx, "debug.GetBeaconStateSSZV2") defer span.End() state, err := ds.StateFetcher.State(ctx, req.StateId) if err != nil { return nil, helpers.PrepareStateFetchGRPCError(err) } sszState, err := state.MarshalSSZ() if err != nil { return nil, status.Errorf(codes.Internal, "Could not marshal state into SSZ: %v", err) } return ðpbv2.BeaconStateSSZResponseV2{Data: sszState}, nil } // ListForkChoiceHeads retrieves the fork choice leaves for the current head. func (ds *Server) ListForkChoiceHeads(ctx context.Context, _ *emptypb.Empty) (*ethpbv1.ForkChoiceHeadsResponse, error) { ctx, span := trace.StartSpan(ctx, "debug.ListForkChoiceHeads") defer span.End() headRoots, headSlots := ds.HeadFetcher.ChainHeads() resp := ðpbv1.ForkChoiceHeadsResponse{ Data: make([]*ethpbv1.ForkChoiceHead, len(headRoots)), } for i := range headRoots { resp.Data[i] = ðpbv1.ForkChoiceHead{ Root: headRoots[i][:], Slot: headSlots[i], } } return resp, nil }