2022-12-19 12:23:54 +00:00
|
|
|
package beacon_api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2023-01-06 03:32:13 +00:00
|
|
|
"context"
|
2022-12-19 12:23:54 +00:00
|
|
|
"encoding/json"
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
|
|
|
"github.com/pkg/errors"
|
2023-03-17 18:52:56 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/rpc/apimiddleware"
|
|
|
|
ethpb "github.com/prysmaticlabs/prysm/v4/proto/prysm/v1alpha1"
|
2022-12-19 12:23:54 +00:00
|
|
|
)
|
|
|
|
|
2023-01-06 03:32:13 +00:00
|
|
|
func (c *beaconApiValidatorClient) prepareBeaconProposer(ctx context.Context, recipients []*ethpb.PrepareBeaconProposerRequest_FeeRecipientContainer) error {
|
2022-12-19 12:23:54 +00:00
|
|
|
jsonRecipients := make([]*apimiddleware.FeeRecipientJson, len(recipients))
|
|
|
|
for index, recipient := range recipients {
|
|
|
|
jsonRecipients[index] = &apimiddleware.FeeRecipientJson{
|
|
|
|
FeeRecipient: hexutil.Encode(recipient.FeeRecipient),
|
|
|
|
ValidatorIndex: strconv.FormatUint(uint64(recipient.ValidatorIndex), 10),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
marshalledJsonRecipients, err := json.Marshal(jsonRecipients)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "failed to marshal recipients")
|
|
|
|
}
|
|
|
|
|
2023-01-06 03:32:13 +00:00
|
|
|
if _, err := c.jsonRestHandler.PostRestJson(ctx, "/eth/v1/validator/prepare_beacon_proposer", nil, bytes.NewBuffer(marshalledJsonRecipients), nil); err != nil {
|
2022-12-19 12:23:54 +00:00
|
|
|
return errors.Wrap(err, "failed to send POST data to REST endpoint")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|