mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 15:37:56 -05:00
* Update V3 from V4 * Fix build v3 -> v4 * Update ssz * Update beacon_chain.pb.go * Fix formatter import * Update update-mockgen.sh comment to v4 * Fix conflicts. Pass build and tests * Fix test
81 lines
3.0 KiB
Go
81 lines
3.0 KiB
Go
package blocks
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/pkg/errors"
|
|
field_params "github.com/prysmaticlabs/prysm/v4/config/fieldparams"
|
|
"github.com/prysmaticlabs/prysm/v4/consensus-types/interfaces"
|
|
"github.com/prysmaticlabs/prysm/v4/consensus-types/primitives"
|
|
eth "github.com/prysmaticlabs/prysm/v4/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/v4/runtime/version"
|
|
)
|
|
|
|
var (
|
|
_ = interfaces.ReadOnlySignedBeaconBlock(&SignedBeaconBlock{})
|
|
_ = interfaces.ReadOnlyBeaconBlock(&BeaconBlock{})
|
|
_ = interfaces.ReadOnlyBeaconBlockBody(&BeaconBlockBody{})
|
|
)
|
|
|
|
var (
|
|
errPayloadWrongType = errors.New("execution payload has wrong type")
|
|
errPayloadHeaderWrongType = errors.New("execution payload header has wrong type")
|
|
)
|
|
|
|
const (
|
|
incorrectBlockVersion = "incorrect beacon block version"
|
|
incorrectBodyVersion = "incorrect beacon block body version"
|
|
)
|
|
|
|
var (
|
|
// ErrUnsupportedGetter is returned when a getter access is not supported for a specific beacon block version.
|
|
ErrUnsupportedGetter = errors.New("unsupported getter")
|
|
// ErrUnsupportedVersion for beacon block methods.
|
|
ErrUnsupportedVersion = errors.New("unsupported beacon block version")
|
|
// ErrNilObjectWrapped is returned in a constructor when the underlying object is nil.
|
|
ErrNilObjectWrapped = errors.New("attempted to wrap nil object")
|
|
errNilBlock = errors.New("received nil beacon block")
|
|
errNilBlockBody = errors.New("received nil beacon block body")
|
|
errIncorrectBlockVersion = errors.New(incorrectBlockVersion)
|
|
errIncorrectBodyVersion = errors.New(incorrectBodyVersion)
|
|
)
|
|
|
|
// BeaconBlockBody is the main beacon block body structure. It can represent any block type.
|
|
type BeaconBlockBody struct {
|
|
version int
|
|
isBlinded bool
|
|
randaoReveal [field_params.BLSSignatureLength]byte
|
|
eth1Data *eth.Eth1Data
|
|
graffiti [field_params.RootLength]byte
|
|
proposerSlashings []*eth.ProposerSlashing
|
|
attesterSlashings []*eth.AttesterSlashing
|
|
attestations []*eth.Attestation
|
|
deposits []*eth.Deposit
|
|
voluntaryExits []*eth.SignedVoluntaryExit
|
|
syncAggregate *eth.SyncAggregate
|
|
executionPayload interfaces.ExecutionData
|
|
executionPayloadHeader interfaces.ExecutionData
|
|
blsToExecutionChanges []*eth.SignedBLSToExecutionChange
|
|
}
|
|
|
|
// BeaconBlock is the main beacon block structure. It can represent any block type.
|
|
type BeaconBlock struct {
|
|
version int
|
|
slot primitives.Slot
|
|
proposerIndex primitives.ValidatorIndex
|
|
parentRoot [field_params.RootLength]byte
|
|
stateRoot [field_params.RootLength]byte
|
|
body *BeaconBlockBody
|
|
}
|
|
|
|
// SignedBeaconBlock is the main signed beacon block structure. It can represent any block type.
|
|
type SignedBeaconBlock struct {
|
|
version int
|
|
block *BeaconBlock
|
|
signature [field_params.BLSSignatureLength]byte
|
|
}
|
|
|
|
func ErrNotSupported(funcName string, ver int) error {
|
|
return errors.Wrap(ErrUnsupportedGetter, fmt.Sprintf("%s is not supported for %s", funcName, version.String(ver)))
|
|
}
|