Documentation ¶
Overview ¶
Package blockchain defines the life-cycle of the blockchain at the core of eth2, including processing of new blocks and attestations using casper proof of stake.
Index ¶
- Variables
- type AttestationReceiver
- type BlockReceiver
- type CanonicalFetcher
- type ChainInfoFetcher
- type Config
- type FinalizationFetcher
- type ForkFetcher
- type GenesisFetcher
- type HeadFetcher
- type Service
- func (s *Service) AttestationCheckPtInfo(ctx context.Context, att *ethpb.Attestation) (*pb.CheckPtInfo, error)
- func (s *Service) AttestationPreState(ctx context.Context, att *ethpb.Attestation) (*state.BeaconState, error)
- func (s *Service) ClearCachedStates()
- func (s *Service) CurrentFork() *pb.Fork
- func (s *Service) CurrentJustifiedCheckpt() *ethpb.Checkpoint
- func (s *Service) CurrentSlot() uint64
- func (s *Service) FinalizedCheckpt() *ethpb.Checkpoint
- func (s *Service) GenesisTime() time.Time
- func (s *Service) GenesisValidatorRoot() [32]byte
- func (s *Service) HasInitSyncBlock(root [32]byte) bool
- func (s *Service) HeadBlock(ctx context.Context) (*ethpb.SignedBeaconBlock, error)
- func (s *Service) HeadETH1Data() *ethpb.Eth1Data
- func (s *Service) HeadGenesisValidatorRoot() [32]byte
- func (s *Service) HeadRoot(ctx context.Context) ([]byte, error)
- func (s *Service) HeadSeed(ctx context.Context, epoch uint64) ([32]byte, error)
- func (s *Service) HeadSlot() uint64
- func (s *Service) HeadState(ctx context.Context) (*state.BeaconState, error)
- func (s *Service) HeadValidatorsIndices(ctx context.Context, epoch uint64) ([]uint64, error)
- func (s *Service) IsCanonical(ctx context.Context, blockRoot [32]byte) (bool, error)
- func (s *Service) IsValidAttestation(ctx context.Context, att *ethpb.Attestation) bool
- func (s *Service) PreviousJustifiedCheckpt() *ethpb.Checkpoint
- func (s *Service) ProtoArrayStore() *protoarray.Store
- func (s *Service) ReceiveAttestationNoPubsub(ctx context.Context, att *ethpb.Attestation) error
- func (s *Service) ReceiveBlock(ctx context.Context, block *ethpb.SignedBeaconBlock, blockRoot [32]byte) error
- func (s *Service) ReceiveBlockBatch(ctx context.Context, blocks []*ethpb.SignedBeaconBlock, blkRoots [][32]byte) error
- func (s *Service) ReceiveBlockInitialSync(ctx context.Context, block *ethpb.SignedBeaconBlock, blockRoot [32]byte) error
- func (s *Service) Start()
- func (s *Service) Status() error
- func (s *Service) Stop() error
- func (s *Service) TreeHandler(w http.ResponseWriter, r *http.Request)
- func (s *Service) VerifyBlkDescendant(ctx context.Context, root [32]byte) error
- type TimeFetcher
Constants ¶
This section is empty.
Variables ¶
var ErrTargetRootNotInDB = errors.New("target root does not exist in db")
ErrTargetRootNotInDB returns when the target block root of an attestation cannot be found in the beacon database.
Functions ¶
This section is empty.
Types ¶
type AttestationReceiver ¶
type AttestationReceiver interface { ReceiveAttestationNoPubsub(ctx context.Context, att *ethpb.Attestation) error IsValidAttestation(ctx context.Context, att *ethpb.Attestation) bool AttestationPreState(ctx context.Context, att *ethpb.Attestation) (*state.BeaconState, error) AttestationCheckPtInfo(ctx context.Context, att *ethpb.Attestation) (*pb.CheckPtInfo, error) }
AttestationReceiver interface defines the methods of chain service receive and processing new attestations.
type BlockReceiver ¶
type BlockReceiver interface { ReceiveBlock(ctx context.Context, block *ethpb.SignedBeaconBlock, blockRoot [32]byte) error ReceiveBlockInitialSync(ctx context.Context, block *ethpb.SignedBeaconBlock, blockRoot [32]byte) error ReceiveBlockBatch(ctx context.Context, blocks []*ethpb.SignedBeaconBlock, blkRoots [][32]byte) error HasInitSyncBlock(root [32]byte) bool }
BlockReceiver interface defines the methods of chain service receive and processing new blocks.
type CanonicalFetcher ¶ added in v1.0.0
type CanonicalFetcher interface { IsCanonical(ctx context.Context, blockRoot [32]byte) (bool, error) VerifyBlkDescendant(ctx context.Context, blockRoot [32]byte) error }
CanonicalFetcher retrieves the current chain's canonical information.
type ChainInfoFetcher ¶
type ChainInfoFetcher interface { HeadFetcher FinalizationFetcher GenesisFetcher CanonicalFetcher }
ChainInfoFetcher defines a common interface for methods in blockchain service which directly retrieves chain info related data.
type Config ¶
type Config struct { BeaconBlockBuf int ChainStartFetcher powchain.ChainStartFetcher BeaconDB db.HeadAccessDatabase DepositCache *depositcache.DepositCache AttPool attestations.Pool ExitPool *voluntaryexits.Pool SlashingPool *slashings.Pool P2p p2p.Broadcaster MaxRoutines int StateNotifier statefeed.Notifier ForkChoiceStore f.ForkChoicer OpsService *attestations.Service StateGen *stategen.State }
Config options for the service.
type FinalizationFetcher ¶
type FinalizationFetcher interface { FinalizedCheckpt() *ethpb.Checkpoint CurrentJustifiedCheckpt() *ethpb.Checkpoint PreviousJustifiedCheckpt() *ethpb.Checkpoint }
FinalizationFetcher defines a common interface for methods in blockchain service which directly retrieves finalization and justification related data.
type ForkFetcher ¶
ForkFetcher retrieves the current fork information of the Ethereum beacon chain.
type GenesisFetcher ¶ added in v1.0.0
type GenesisFetcher interface {
GenesisValidatorRoot() [32]byte
}
GenesisFetcher retrieves the eth2 data related to its genesis.
type HeadFetcher ¶
type HeadFetcher interface { HeadSlot() uint64 HeadRoot(ctx context.Context) ([]byte, error) HeadBlock(ctx context.Context) (*ethpb.SignedBeaconBlock, error) HeadState(ctx context.Context) (*state.BeaconState, error) HeadValidatorsIndices(ctx context.Context, epoch uint64) ([]uint64, error) HeadSeed(ctx context.Context, epoch uint64) ([32]byte, error) HeadGenesisValidatorRoot() [32]byte HeadETH1Data() *ethpb.Eth1Data ProtoArrayStore() *protoarray.Store }
HeadFetcher defines a common interface for methods in blockchain service which directly retrieves head related data.
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
Service represents a service that handles the internal logic of managing the full PoS beacon chain.
func NewService ¶
NewService instantiates a new block service instance that will be registered into a running beacon node.
func (*Service) AttestationCheckPtInfo ¶
func (s *Service) AttestationCheckPtInfo(ctx context.Context, att *ethpb.Attestation) (*pb.CheckPtInfo, error)
AttestationCheckPtInfo returns the check point info of attestation that can be used to verify the attestation contents and signatures.
func (*Service) AttestationPreState ¶ added in v1.0.0
func (s *Service) AttestationPreState(ctx context.Context, att *ethpb.Attestation) (*state.BeaconState, error)
AttestationPreState returns the pre state of attestation.
func (*Service) ClearCachedStates ¶ added in v0.3.2
func (s *Service) ClearCachedStates()
ClearCachedStates removes all stored caches states. This is done after the node is synced.
func (*Service) CurrentFork ¶
CurrentFork retrieves the latest fork information of the beacon chain.
func (*Service) CurrentJustifiedCheckpt ¶ added in v0.3.0
func (s *Service) CurrentJustifiedCheckpt() *ethpb.Checkpoint
CurrentJustifiedCheckpt returns the current justified checkpoint from head state.
func (*Service) CurrentSlot ¶ added in v0.3.2
CurrentSlot returns the current slot based on time.
func (*Service) FinalizedCheckpt ¶
func (s *Service) FinalizedCheckpt() *ethpb.Checkpoint
FinalizedCheckpt returns the latest finalized checkpoint from head state.
func (*Service) GenesisTime ¶
GenesisTime returns the genesis time of beacon chain.
func (*Service) GenesisValidatorRoot ¶ added in v1.0.0
GenesisValidatorRoot returns the genesis validator root of the chain.
func (*Service) HasInitSyncBlock ¶ added in v0.3.9
HasInitSyncBlock returns true if the block of the input root exists in initial sync blocks cache.
func (*Service) HeadBlock ¶
HeadBlock returns the head block of the chain. If the head is nil from service struct, it will attempt to get the head block from DB.
func (*Service) HeadETH1Data ¶ added in v1.0.0
HeadETH1Data returns the eth1data of the current head state.
func (*Service) HeadGenesisValidatorRoot ¶ added in v1.0.0
HeadGenesisValidatorRoot returns genesis validator root of the head state.
func (*Service) HeadSeed ¶ added in v0.3.0
HeadSeed returns the seed from the head view of a given epoch.
func (*Service) HeadState ¶
HeadState returns the head state of the chain. If the head is nil from service struct, it will attempt to get the head state from DB.
func (*Service) HeadValidatorsIndices ¶ added in v0.3.0
HeadValidatorsIndices returns a list of active validator indices from the head view of a given epoch.
func (*Service) IsCanonical ¶ added in v1.0.0
IsCanonical returns true if the input block root is part of the canonical chain.
func (*Service) IsValidAttestation ¶ added in v0.3.2
IsValidAttestation returns true if the attestation can be verified against its pre-state.
func (*Service) PreviousJustifiedCheckpt ¶ added in v0.3.0
func (s *Service) PreviousJustifiedCheckpt() *ethpb.Checkpoint
PreviousJustifiedCheckpt returns the previous justified checkpoint from head state.
func (*Service) ProtoArrayStore ¶ added in v1.0.0
func (s *Service) ProtoArrayStore() *protoarray.Store
ProtoArrayStore returns the proto array store object.
func (*Service) ReceiveAttestationNoPubsub ¶
ReceiveAttestationNoPubsub is a function that defines the operations that are performed on attestation that is received from regular sync. The operations consist of:
- Validate attestation, update validator's latest vote
- Apply fork choice to the processed attestation
- Save latest head info
func (*Service) ReceiveBlock ¶
func (s *Service) ReceiveBlock(ctx context.Context, block *ethpb.SignedBeaconBlock, blockRoot [32]byte) error
ReceiveBlock is a function that defines the the operations (minus pubsub) that are performed on blocks that is received from regular sync service. The operations consists of:
- Validate block, apply state transition and update check points
- Apply fork choice to the processed block
- Save latest head info
func (*Service) ReceiveBlockBatch ¶ added in v1.0.0
func (s *Service) ReceiveBlockBatch(ctx context.Context, blocks []*ethpb.SignedBeaconBlock, blkRoots [][32]byte) error
ReceiveBlockBatch processes the whole block batch at once, assuming the block batch is linear ,transitioning the state, performing batch verification of all collected signatures and then performing the appropriate actions for a block post-transition.
func (*Service) ReceiveBlockInitialSync ¶ added in v1.0.0
func (s *Service) ReceiveBlockInitialSync(ctx context.Context, block *ethpb.SignedBeaconBlock, blockRoot [32]byte) error
ReceiveBlockInitialSync processes the input block for the purpose of initial syncing. This method should only be used on blocks during initial syncing phase.
func (*Service) Status ¶
Status always returns nil unless there is an error condition that causes this service to be unhealthy.
func (*Service) TreeHandler ¶ added in v0.3.2
func (s *Service) TreeHandler(w http.ResponseWriter, r *http.Request)
TreeHandler is a handler to serve /tree page in metrics.
type TimeFetcher ¶ added in v0.3.2
TimeFetcher retrieves the Eth2 data that's related to time.