Files
prysm/validator/client/beacon-api/propose_exit.go
Bastin 92bd211e4d upgrade v6 to v7 (#15989)
* upgrade v6 to v7

* changelog

* update-go-ssz
2025-11-06 16:16:23 +00:00

56 lines
1.5 KiB
Go

package beacon_api
import (
"bytes"
"context"
"encoding/json"
"strconv"
"github.com/OffchainLabs/prysm/v7/api/server/structs"
ethpb "github.com/OffchainLabs/prysm/v7/proto/prysm/v1alpha1"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/pkg/errors"
)
func (c *beaconApiValidatorClient) proposeExit(ctx context.Context, signedVoluntaryExit *ethpb.SignedVoluntaryExit) (*ethpb.ProposeExitResponse, error) {
if signedVoluntaryExit == nil {
return nil, errors.New("signed voluntary exit is nil")
}
if signedVoluntaryExit.Exit == nil {
return nil, errors.New("exit is nil")
}
jsonSignedVoluntaryExit := structs.SignedVoluntaryExit{
Message: &structs.VoluntaryExit{
Epoch: strconv.FormatUint(uint64(signedVoluntaryExit.Exit.Epoch), 10),
ValidatorIndex: strconv.FormatUint(uint64(signedVoluntaryExit.Exit.ValidatorIndex), 10),
},
Signature: hexutil.Encode(signedVoluntaryExit.Signature),
}
marshalledSignedVoluntaryExit, err := json.Marshal(jsonSignedVoluntaryExit)
if err != nil {
return nil, errors.Wrap(err, "failed to marshal signed voluntary exit")
}
if err = c.jsonRestHandler.Post(
ctx,
"/eth/v1/beacon/pool/voluntary_exits",
nil,
bytes.NewBuffer(marshalledSignedVoluntaryExit),
nil,
); err != nil {
return nil, err
}
exitRoot, err := signedVoluntaryExit.Exit.HashTreeRoot()
if err != nil {
return nil, errors.Wrap(err, "failed to compute exit root")
}
return &ethpb.ProposeExitResponse{
ExitRoot: exitRoot[:],
}, nil
}