2020-01-22 16:50:16 +00:00
|
|
|
package forkchoice
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-01-26 20:25:33 +00:00
|
|
|
|
2022-08-16 12:20:13 +00:00
|
|
|
forkchoicetypes "github.com/prysmaticlabs/prysm/v3/beacon-chain/forkchoice/types"
|
|
|
|
"github.com/prysmaticlabs/prysm/v3/beacon-chain/state"
|
|
|
|
fieldparams "github.com/prysmaticlabs/prysm/v3/config/fieldparams"
|
|
|
|
types "github.com/prysmaticlabs/prysm/v3/consensus-types/primitives"
|
2022-08-26 14:54:32 +00:00
|
|
|
v1 "github.com/prysmaticlabs/prysm/v3/proto/eth/v1"
|
2020-01-22 16:50:16 +00:00
|
|
|
)
|
|
|
|
|
2022-09-30 09:39:07 +00:00
|
|
|
// BalanceByRooter is a handler to obtain the effective balances of the state
|
|
|
|
// with the given block root
|
|
|
|
type BalancesByRooter func(context.Context, [32]byte) ([]uint64, error)
|
|
|
|
|
2022-02-12 03:33:46 +00:00
|
|
|
// ForkChoicer represents the full fork choice interface composed of all the sub-interfaces.
|
2020-01-25 20:22:25 +00:00
|
|
|
type ForkChoicer interface {
|
2020-01-22 16:50:16 +00:00
|
|
|
HeadRetriever // to compute head.
|
|
|
|
BlockProcessor // to track new block for fork choice.
|
|
|
|
AttestationProcessor // to track new attestation for fork choice.
|
2020-01-26 20:25:33 +00:00
|
|
|
Getter // to retrieve fork choice information.
|
2022-03-09 03:05:51 +00:00
|
|
|
Setter // to set fork choice information.
|
2022-01-29 16:32:01 +00:00
|
|
|
ProposerBooster // ability to boost timely-proposed block roots.
|
2020-01-22 16:50:16 +00:00
|
|
|
}
|
|
|
|
|
2022-02-03 21:30:07 +00:00
|
|
|
// HeadRetriever retrieves head root and optimistic info of the current chain.
|
2020-01-22 16:50:16 +00:00
|
|
|
type HeadRetriever interface {
|
2022-06-09 22:28:30 +00:00
|
|
|
Head(context.Context, []uint64) ([32]byte, error)
|
2022-06-25 03:57:52 +00:00
|
|
|
CachedHeadRoot() [32]byte
|
2022-03-09 03:05:51 +00:00
|
|
|
Tips() ([][32]byte, []types.Slot)
|
2022-04-06 14:18:30 +00:00
|
|
|
IsOptimistic(root [32]byte) (bool, error)
|
2022-08-03 13:59:03 +00:00
|
|
|
AllTipsAreInvalid() bool
|
2020-01-22 16:50:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// BlockProcessor processes the block that's used for accounting fork choice.
|
|
|
|
type BlockProcessor interface {
|
2022-06-29 23:37:21 +00:00
|
|
|
InsertNode(context.Context, state.BeaconState, [32]byte) error
|
2022-05-31 10:19:48 +00:00
|
|
|
InsertOptimisticChain(context.Context, []*forkchoicetypes.BlockAndCheckpoints) error
|
2020-01-22 16:50:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AttestationProcessor processes the attestation that's used for accounting fork choice.
|
|
|
|
type AttestationProcessor interface {
|
2021-02-09 10:05:22 +00:00
|
|
|
ProcessAttestation(context.Context, []uint64, [32]byte, types.Epoch)
|
2022-05-02 19:19:03 +00:00
|
|
|
InsertSlashedIndex(context.Context, types.ValidatorIndex)
|
2020-01-22 16:50:16 +00:00
|
|
|
}
|
|
|
|
|
2022-01-29 16:32:01 +00:00
|
|
|
// ProposerBooster is able to boost the proposer's root score during fork choice.
|
|
|
|
type ProposerBooster interface {
|
|
|
|
ResetBoostedProposerRoot(ctx context.Context) error
|
|
|
|
}
|
|
|
|
|
2020-01-26 20:25:33 +00:00
|
|
|
// Getter returns fork choice related information.
|
|
|
|
type Getter interface {
|
2020-02-05 17:05:51 +00:00
|
|
|
HasNode([32]byte) bool
|
2022-03-09 03:05:51 +00:00
|
|
|
ProposerBoost() [fieldparams.RootLength]byte
|
2020-07-28 22:29:34 +00:00
|
|
|
HasParent(root [32]byte) bool
|
2022-06-16 18:21:40 +00:00
|
|
|
AncestorRoot(ctx context.Context, root [32]byte, slot types.Slot) ([32]byte, error)
|
2022-08-25 23:59:08 +00:00
|
|
|
CommonAncestor(ctx context.Context, root1 [32]byte, root2 [32]byte) ([32]byte, types.Slot, error)
|
2020-10-23 01:32:13 +00:00
|
|
|
IsCanonical(root [32]byte) bool
|
2022-06-09 22:28:30 +00:00
|
|
|
FinalizedCheckpoint() *forkchoicetypes.Checkpoint
|
2022-06-25 03:57:52 +00:00
|
|
|
FinalizedPayloadBlockHash() [32]byte
|
2022-06-09 22:28:30 +00:00
|
|
|
JustifiedCheckpoint() *forkchoicetypes.Checkpoint
|
2022-06-25 03:57:52 +00:00
|
|
|
PreviousJustifiedCheckpoint() *forkchoicetypes.Checkpoint
|
|
|
|
JustifiedPayloadBlockHash() [32]byte
|
|
|
|
BestJustifiedCheckpoint() *forkchoicetypes.Checkpoint
|
2022-03-09 03:05:51 +00:00
|
|
|
NodeCount() int
|
2022-08-10 15:58:52 +00:00
|
|
|
HighestReceivedBlockSlot() types.Slot
|
2022-09-12 14:29:01 +00:00
|
|
|
HighestReceivedBlockRoot() [32]byte
|
2022-08-10 15:58:52 +00:00
|
|
|
ReceivedBlocksLastEpoch() (uint64, error)
|
2022-11-28 19:17:53 +00:00
|
|
|
ForkChoiceDump(context.Context) (*v1.ForkChoiceDump, error)
|
2022-09-11 19:04:40 +00:00
|
|
|
VotedFraction(root [32]byte) (uint64, error)
|
2020-01-26 20:25:33 +00:00
|
|
|
}
|
2022-02-06 18:00:47 +00:00
|
|
|
|
2022-03-09 03:05:51 +00:00
|
|
|
// Setter allows to set forkchoice information
|
|
|
|
type Setter interface {
|
|
|
|
SetOptimisticToValid(context.Context, [fieldparams.RootLength]byte) error
|
2022-05-02 13:53:22 +00:00
|
|
|
SetOptimisticToInvalid(context.Context, [fieldparams.RootLength]byte, [fieldparams.RootLength]byte, [fieldparams.RootLength]byte) ([][32]byte, error)
|
2022-06-09 22:28:30 +00:00
|
|
|
UpdateJustifiedCheckpoint(*forkchoicetypes.Checkpoint) error
|
|
|
|
UpdateFinalizedCheckpoint(*forkchoicetypes.Checkpoint) error
|
2022-06-16 18:21:40 +00:00
|
|
|
SetGenesisTime(uint64)
|
|
|
|
SetOriginRoot([32]byte)
|
2022-06-25 03:57:52 +00:00
|
|
|
NewSlot(context.Context, types.Slot) error
|
2022-09-30 09:39:07 +00:00
|
|
|
SetBalancesByRooter(BalancesByRooter)
|
2022-02-06 18:00:47 +00:00
|
|
|
}
|