Documentation ¶
Overview ¶
Package features defines which features are enabled for runtime in order to selectively enable certain features to maintain a stable runtime.
The process for implementing new features using this package is as follows:
- Add a new CMD flag in flags.go, and place it in the proper list(s) var for its client.
- Add a condition for the flag in the proper Configure function(s) below.
- Place any "new" behavior in the `if flagEnabled` statement.
- Place any "previous" behavior in the `else` statement.
- Ensure any tests using the new feature fail if the flag isn't enabled. 5a. Use the following to enable your flag for tests: cfg := &featureconfig.Flags{ VerifyAttestationSigs: true, } resetCfg := featureconfig.InitWithReset(cfg) defer resetCfg()
- Add the string for the flags that should be running within E2E to E2EValidatorFlags and E2EBeaconChainFlags.
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // PraterTestnet flag for the multiclient Ethereum consensus testnet. PraterTestnet = &cli.BoolFlag{ Name: "prater", Usage: "Run Prysm configured for the Prater / Goerli test network", Aliases: []string{"goerli"}, } // RopstenTestnet flag for the multiclient Ethereum consensus testnet. RopstenTestnet = &cli.BoolFlag{ Name: "ropsten", Usage: "Run Prysm configured for the Ropsten beacon chain test network", } // SepoliaTestnet flag for the multiclient Ethereum consensus testnet. SepoliaTestnet = &cli.BoolFlag{ Name: "sepolia", Usage: "Run Prysm configured for the Sepolia beacon chain test network", } // Mainnet flag for easier tooling, no-op Mainnet = &cli.BoolFlag{ Value: true, Name: "mainnet", Usage: "Run on Ethereum Beacon Chain Main Net. This is the default and can be omitted.", } EnableOnlyBlindedBeaconBlocks = &cli.BoolFlag{ Name: "enable-only-blinded-beacon-blocks", Usage: "Enables storing only blinded beacon blocks in the database without full execution layer transactions", } EnableBeaconRESTApi = &cli.BoolFlag{ Name: "enable-beacon-rest-api", Usage: "Experimental enable of the beacon REST API when querying a beacon node", } )
var BeaconChainFlags = append(deprecatedBeaconFlags, append(deprecatedFlags, []cli.Flag{ devModeFlag, writeSSZStateTransitionsFlag, disableGRPCConnectionLogging, PraterTestnet, RopstenTestnet, SepoliaTestnet, Mainnet, disablePeerScorer, disableBroadcastSlashingFlag, enableSlasherFlag, enableHistoricalSpaceRepresentation, disableStakinContractCheck, disablePullTips, disableVecHTR, disableForkChoiceDoublyLinkedTree, disableGossipBatchAggregation, EnableOnlyBlindedBeaconBlocks, enableStartupOptimistic, disableDefensivePull, enableFullSSZDataLogging, enableVerboseSigVerification, }...)...)
BeaconChainFlags contains a list of all the feature flags that apply to the beacon-chain client.
var E2EBeaconChainFlags = []string{
"--dev",
}
E2EBeaconChainFlags contains a list of the beacon chain feature flags to be tested in E2E.
var E2EValidatorFlags = []string{
"--enable-doppelganger",
}
E2EValidatorFlags contains a list of the validator feature flags to be tested in E2E.
var NetworkFlags = []cli.Flag{ Mainnet, PraterTestnet, RopstenTestnet, SepoliaTestnet, }
NetworkFlags contains a list of network flags.
var ValidatorFlags = append(deprecatedFlags, []cli.Flag{ writeWalletPasswordOnWebOnboarding, enableExternalSlasherProtectionFlag, PraterTestnet, RopstenTestnet, SepoliaTestnet, Mainnet, dynamicKeyReloadDebounceInterval, attestTimely, enableSlashingProtectionPruning, enableDoppelGangerProtection, EnableBeaconRESTApi, }...)
ValidatorFlags contains a list of all the feature flags that apply to the validator client.
Functions ¶
func ActiveFlags ¶
func ActiveFlags(flags []cli.Flag) []cli.Flag
ActiveFlags returns all of the flags that are not Hidden.
func ConfigureBeaconChain ¶
func ConfigureBeaconChain(ctx *cli.Context) error
ConfigureBeaconChain sets the global config based on what flags are enabled for the beacon-chain client.
func ConfigureValidator ¶
func ConfigureValidator(ctx *cli.Context) error
ConfigureValidator sets the global config based on what flags are enabled for the validator client.
func InitWithReset ¶
func InitWithReset(c *Flags) func()
InitWithReset sets the global config and returns function that is used to reset configuration.
Types ¶
type Flags ¶
type Flags struct { // Feature related flags. RemoteSlasherProtection bool // RemoteSlasherProtection utilizes a beacon node with --slasher mode for validator slashing protection. WriteSSZStateTransitions bool // WriteSSZStateTransitions to tmp directory. EnablePeerScorer bool // EnablePeerScorer enables experimental peer scoring in p2p. WriteWalletPasswordOnWebOnboarding bool // WriteWalletPasswordOnWebOnboarding writes the password to disk after Prysm web signup. EnableDoppelGanger bool // EnableDoppelGanger enables doppelganger protection on startup for the validator. EnableHistoricalSpaceRepresentation bool // EnableHistoricalSpaceRepresentation enables the saving of registry validators in separate buckets to save space EnableBeaconRESTApi bool // EnableBeaconRESTApi enables experimental usage of the beacon REST API by the validator when querying a beacon node // Logging related toggles. DisableGRPCConnectionLogs bool // Disables logging when a new grpc client has connected. EnableFullSSZDataLogging bool // Enables logging for full ssz data on rejected gossip messages // Slasher toggles. DisableBroadcastSlashings bool // DisableBroadcastSlashings disables p2p broadcasting of proposer and attester slashings. // Bug fixes related flags. AttestTimely bool // AttestTimely fixes #8185. It is gated behind a flag to ensure beacon node's fix can safely roll out first. We'll invert this in v1.1.0. EnableSlasher bool // Enable slasher in the beacon node runtime. // EnableSlashingProtectionPruning for the validator client. EnableSlashingProtectionPruning bool DisablePullTips bool // DisablePullTips disables experimental disabling of boundary checks. EnableDefensivePull bool // EnableDefensivePull enables exerimental back boundary checks. EnableVectorizedHTR bool // EnableVectorizedHTR specifies whether the beacon state will use the optimized sha256 routines. DisableForkchoiceDoublyLinkedTree bool // DisableForkChoiceDoublyLinkedTree specifies whether fork choice store will use a doubly linked tree. EnableBatchGossipAggregation bool // EnableBatchGossipAggregation specifies whether to further aggregate our gossip batches before verifying them. EnableOnlyBlindedBeaconBlocks bool // EnableOnlyBlindedBeaconBlocks enables only storing blinded beacon blocks in the DB post-Bellatrix fork. EnableStartOptimistic bool // EnableStartOptimistic treats every block as optimistic at startup. DisableStakinContractCheck bool // Disables check for deposit contract when proposing blocks EnableVerboseSigVerification bool // EnableVerboseSigVerification specifies whether to verify individual signature if batch verification fails // KeystoreImportDebounceInterval specifies the time duration the validator waits to reload new keys if they have // changed on disk. This feature is for advanced use cases only. KeystoreImportDebounceInterval time.Duration }
Flags is a struct to represent which features the client will perform on runtime.