mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
178 lines
6.4 KiB
Go
178 lines
6.4 KiB
Go
package features
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
var (
|
|
// PraterTestnet flag for the multiclient Ethereum consensus testnet.
|
|
PraterTestnet = &cli.BoolFlag{
|
|
Name: "prater",
|
|
Usage: "Run Prysm configured for the Prater test network",
|
|
}
|
|
// 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.",
|
|
}
|
|
devModeFlag = &cli.BoolFlag{
|
|
Name: "dev",
|
|
Usage: "Enable experimental features still in development. These features may not be stable.",
|
|
}
|
|
writeSSZStateTransitionsFlag = &cli.BoolFlag{
|
|
Name: "interop-write-ssz-state-transitions",
|
|
Usage: "Write ssz states to disk after attempted state transition",
|
|
}
|
|
enableExternalSlasherProtectionFlag = &cli.BoolFlag{
|
|
Name: "enable-external-slasher-protection",
|
|
Usage: "Enables the validator to connect to a beacon node using the --slasher flag" +
|
|
"for remote slashing protection",
|
|
}
|
|
disableGRPCConnectionLogging = &cli.BoolFlag{
|
|
Name: "disable-grpc-connection-logging",
|
|
Usage: "Disables displaying logs for newly connected grpc clients",
|
|
}
|
|
enablePeerScorer = &cli.BoolFlag{
|
|
Name: "enable-peer-scorer",
|
|
Usage: "Enable experimental P2P peer scorer",
|
|
}
|
|
checkPtInfoCache = &cli.BoolFlag{
|
|
Name: "use-check-point-cache",
|
|
Usage: "Enables check point info caching",
|
|
}
|
|
enableLargerGossipHistory = &cli.BoolFlag{
|
|
Name: "enable-larger-gossip-history",
|
|
Usage: "Enables the node to store a larger amount of gossip messages in its cache.",
|
|
}
|
|
writeWalletPasswordOnWebOnboarding = &cli.BoolFlag{
|
|
Name: "write-wallet-password-on-web-onboarding",
|
|
Usage: "(Danger): Writes the wallet password to the wallet directory on completing Prysm web onboarding. " +
|
|
"We recommend against this flag unless you are an advanced user.",
|
|
}
|
|
disableAttestingHistoryDBCache = &cli.BoolFlag{
|
|
Name: "disable-attesting-history-db-cache",
|
|
Usage: "(Danger): Disables the cache for attesting history in the validator DB, greatly increasing " +
|
|
"disk reads and writes as well as increasing time required for attestations to be produced",
|
|
}
|
|
dynamicKeyReloadDebounceInterval = &cli.DurationFlag{
|
|
Name: "dynamic-key-reload-debounce-interval",
|
|
Usage: "(Advanced): Specifies the time duration the validator waits to reload new keys if they have " +
|
|
"changed on disk. Default 1s, can be any type of duration such as 1.5s, 1000ms, 1m.",
|
|
Value: time.Second,
|
|
}
|
|
disableBroadcastSlashingFlag = &cli.BoolFlag{
|
|
Name: "disable-broadcast-slashings",
|
|
Usage: "Disables broadcasting slashings submitted to the beacon node.",
|
|
}
|
|
attestTimely = &cli.BoolFlag{
|
|
Name: "attest-timely",
|
|
Usage: "Fixes validator can attest timely after current block processes. See #8185 for more details",
|
|
}
|
|
enableSlasherFlag = &cli.BoolFlag{
|
|
Name: "slasher",
|
|
Usage: "Enables a slasher in the beacon node for detecting slashable offenses",
|
|
}
|
|
enableSlashingProtectionPruning = &cli.BoolFlag{
|
|
Name: "enable-slashing-protection-history-pruning",
|
|
Usage: "Enables the pruning of the validator client's slashing protection database",
|
|
}
|
|
enableDoppelGangerProtection = &cli.BoolFlag{
|
|
Name: "enable-doppelganger",
|
|
Usage: "Enables the validator to perform a doppelganger check. (Warning): This is not " +
|
|
"a foolproof method to find duplicate instances in the network. Your validator will still be" +
|
|
" vulnerable if it is being run in unsafe configurations.",
|
|
}
|
|
enableHistoricalSpaceRepresentation = &cli.BoolFlag{
|
|
Name: "enable-historical-state-representation",
|
|
Usage: "Enables the beacon chain to save historical states in a space efficient manner." +
|
|
" (Warning): Once enabled, this feature migrates your database in to a new schema and " +
|
|
"there is no going back. At worst, your entire database might get corrupted.",
|
|
}
|
|
enableNativeState = &cli.BoolFlag{
|
|
Name: "enable-native-state",
|
|
Usage: "Enables representing the beacon state as a pure Go struct.",
|
|
}
|
|
enableVecHTR = &cli.BoolFlag{
|
|
Name: "enable-vectorized-htr",
|
|
Usage: "Enables new go sha256 library which utilizes optimized routines for merkle trees",
|
|
}
|
|
enableForkChoiceDoublyLinkedTree = &cli.BoolFlag{
|
|
Name: "enable-forkchoice-doubly-linked-tree",
|
|
Usage: "Enables new forkchoice store structure that uses doubly linked trees",
|
|
}
|
|
enableGossipBatchAggregation = &cli.BoolFlag{
|
|
Name: "enable-gossip-batch-aggregation",
|
|
Usage: "Enables new methods to further aggregate our gossip batches before verifying them.",
|
|
}
|
|
)
|
|
|
|
// devModeFlags holds list of flags that are set when development mode is on.
|
|
var devModeFlags = []cli.Flag{
|
|
enablePeerScorer,
|
|
enableVecHTR,
|
|
enableForkChoiceDoublyLinkedTree,
|
|
enableGossipBatchAggregation,
|
|
}
|
|
|
|
// ValidatorFlags contains a list of all the feature flags that apply to the validator client.
|
|
var ValidatorFlags = append(deprecatedFlags, []cli.Flag{
|
|
writeWalletPasswordOnWebOnboarding,
|
|
enableExternalSlasherProtectionFlag,
|
|
disableAttestingHistoryDBCache,
|
|
PraterTestnet,
|
|
RopstenTestnet,
|
|
SepoliaTestnet,
|
|
Mainnet,
|
|
dynamicKeyReloadDebounceInterval,
|
|
attestTimely,
|
|
enableSlashingProtectionPruning,
|
|
enableDoppelGangerProtection,
|
|
}...)
|
|
|
|
// E2EValidatorFlags contains a list of the validator feature flags to be tested in E2E.
|
|
var E2EValidatorFlags = []string{
|
|
"--enable-doppelganger",
|
|
}
|
|
|
|
// BeaconChainFlags contains a list of all the feature flags that apply to the beacon-chain client.
|
|
var BeaconChainFlags = append(deprecatedFlags, []cli.Flag{
|
|
devModeFlag,
|
|
writeSSZStateTransitionsFlag,
|
|
disableGRPCConnectionLogging,
|
|
PraterTestnet,
|
|
RopstenTestnet,
|
|
SepoliaTestnet,
|
|
Mainnet,
|
|
enablePeerScorer,
|
|
enableLargerGossipHistory,
|
|
checkPtInfoCache,
|
|
disableBroadcastSlashingFlag,
|
|
enableSlasherFlag,
|
|
enableHistoricalSpaceRepresentation,
|
|
enableNativeState,
|
|
enableVecHTR,
|
|
enableForkChoiceDoublyLinkedTree,
|
|
enableGossipBatchAggregation,
|
|
}...)
|
|
|
|
// E2EBeaconChainFlags contains a list of the beacon chain feature flags to be tested in E2E.
|
|
var E2EBeaconChainFlags = []string{
|
|
"--dev",
|
|
"--use-check-point-cache",
|
|
"--enable-active-balance-cache",
|
|
"--enable-native-state",
|
|
}
|