mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
77d3ccb9ad
* Clean up state types * rename package
107 lines
3.5 KiB
Go
107 lines
3.5 KiB
Go
package beacon_api
|
|
|
|
import (
|
|
"context"
|
|
"net/url"
|
|
"strconv"
|
|
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
|
"github.com/pkg/errors"
|
|
rpcmiddleware "github.com/prysmaticlabs/prysm/v3/beacon-chain/rpc/apimiddleware"
|
|
"github.com/prysmaticlabs/prysm/v3/consensus-types/primitives"
|
|
ethpb "github.com/prysmaticlabs/prysm/v3/proto/prysm/v1alpha1"
|
|
)
|
|
|
|
func (c beaconApiValidatorClient) getAttestationData(
|
|
ctx context.Context,
|
|
reqSlot primitives.Slot,
|
|
reqCommitteeIndex primitives.CommitteeIndex,
|
|
) (*ethpb.AttestationData, error) {
|
|
params := url.Values{}
|
|
params.Add("slot", strconv.FormatUint(uint64(reqSlot), 10))
|
|
params.Add("committee_index", strconv.FormatUint(uint64(reqCommitteeIndex), 10))
|
|
|
|
query := buildURL("/eth/v1/validator/attestation_data", params)
|
|
produceAttestationDataResponseJson := rpcmiddleware.ProduceAttestationDataResponseJson{}
|
|
_, err := c.jsonRestHandler.GetRestJsonResponse(ctx, query, &produceAttestationDataResponseJson)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "failed to get json response")
|
|
}
|
|
|
|
if produceAttestationDataResponseJson.Data == nil {
|
|
return nil, errors.New("attestation data is nil")
|
|
}
|
|
|
|
attestationData := produceAttestationDataResponseJson.Data
|
|
committeeIndex, err := strconv.ParseUint(attestationData.CommitteeIndex, 10, 64)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "failed to parse attestation committee index: %s", attestationData.CommitteeIndex)
|
|
}
|
|
|
|
if !validRoot(attestationData.BeaconBlockRoot) {
|
|
return nil, errors.Errorf("invalid beacon block root: %s", attestationData.BeaconBlockRoot)
|
|
}
|
|
|
|
beaconBlockRoot, err := hexutil.Decode(attestationData.BeaconBlockRoot)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "failed to decode beacon block root: %s", attestationData.BeaconBlockRoot)
|
|
}
|
|
|
|
slot, err := strconv.ParseUint(attestationData.Slot, 10, 64)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "failed to parse attestation slot: %s", attestationData.Slot)
|
|
}
|
|
|
|
if attestationData.Source == nil {
|
|
return nil, errors.New("attestation source is nil")
|
|
}
|
|
|
|
sourceEpoch, err := strconv.ParseUint(attestationData.Source.Epoch, 10, 64)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "failed to parse attestation source epoch: %s", attestationData.Source.Epoch)
|
|
}
|
|
|
|
if !validRoot(attestationData.Source.Root) {
|
|
return nil, errors.Errorf("invalid attestation source root: %s", attestationData.Source.Root)
|
|
}
|
|
|
|
sourceRoot, err := hexutil.Decode(attestationData.Source.Root)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "failed to decode attestation source root: %s", attestationData.Source.Root)
|
|
}
|
|
|
|
if attestationData.Target == nil {
|
|
return nil, errors.New("attestation target is nil")
|
|
}
|
|
|
|
targetEpoch, err := strconv.ParseUint(attestationData.Target.Epoch, 10, 64)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "failed to parse attestation target epoch: %s", attestationData.Target.Epoch)
|
|
}
|
|
|
|
if !validRoot(attestationData.Target.Root) {
|
|
return nil, errors.Errorf("invalid attestation target root: %s", attestationData.Target.Root)
|
|
}
|
|
|
|
targetRoot, err := hexutil.Decode(attestationData.Target.Root)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "failed to decode attestation target root: %s", attestationData.Target.Root)
|
|
}
|
|
|
|
response := ðpb.AttestationData{
|
|
BeaconBlockRoot: beaconBlockRoot,
|
|
CommitteeIndex: primitives.CommitteeIndex(committeeIndex),
|
|
Slot: primitives.Slot(slot),
|
|
Source: ðpb.Checkpoint{
|
|
Epoch: primitives.Epoch(sourceEpoch),
|
|
Root: sourceRoot,
|
|
},
|
|
Target: ðpb.Checkpoint{
|
|
Epoch: primitives.Epoch(targetEpoch),
|
|
Root: targetRoot,
|
|
},
|
|
}
|
|
|
|
return response, nil
|
|
}
|