mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
dee3f02e2c
* Change prometheus flag from default 8080 and sort flags * Merge branch 'master' of https://github.com/prysmaticlabs/prysm into change-prometheus-port * Fix build * Merge branch 'master' of https://github.com/prysmaticlabs/prysm into change-prometheus-port * Merge branch 'master' into change-prometheus-port
92 lines
3.5 KiB
Go
92 lines
3.5 KiB
Go
package flags
|
|
|
|
import (
|
|
"gopkg.in/urfave/cli.v2"
|
|
)
|
|
|
|
var (
|
|
// AccountMetricsFlag defines the graffiti value included in proposed blocks, default false.
|
|
AccountMetricsFlag = &cli.BoolFlag{
|
|
Name: "enable-account-metrics",
|
|
Usage: "Enable prometheus metrics for validator accounts",
|
|
}
|
|
// BeaconRPCProviderFlag defines a beacon node RPC endpoint.
|
|
BeaconRPCProviderFlag = &cli.StringFlag{
|
|
Name: "beacon-rpc-provider",
|
|
Usage: "Beacon node RPC provider endpoint",
|
|
Value: "localhost:4000",
|
|
}
|
|
// CertFlag defines a flag for the node's TLS certificate.
|
|
CertFlag = &cli.StringFlag{
|
|
Name: "tls-cert",
|
|
Usage: "Certificate for secure gRPC. Pass this and the tls-key flag in order to use gRPC securely.",
|
|
}
|
|
// DisablePenaltyRewardLogFlag defines the ability to not log reward/penalty information during deployment
|
|
DisablePenaltyRewardLogFlag = &cli.BoolFlag{
|
|
Name: "disable-rewards-penalties-logging",
|
|
Usage: "Disable reward/penalty logging during cluster deployment",
|
|
}
|
|
// GraffitiFlag defines the graffiti value included in proposed blocks
|
|
GraffitiFlag = &cli.StringFlag{
|
|
Name: "graffiti",
|
|
Usage: "String to include in proposed blocks",
|
|
}
|
|
// GrpcMaxCallRecvMsgSizeFlag defines the max call message size for GRPC
|
|
GrpcMaxCallRecvMsgSizeFlag = &cli.IntFlag{
|
|
Name: "grpc-max-msg-size",
|
|
Usage: "Integer to define max recieve message call size (default: 52428800 (for 50Mb)).",
|
|
}
|
|
// GrpcRetriesFlag defines the number of times to retry a failed gRPC request.
|
|
GrpcRetriesFlag = &cli.UintFlag{
|
|
Name: "grpc-retries",
|
|
Usage: "Number of attempts to retry gRPC requests",
|
|
Value: 5,
|
|
}
|
|
// GrpcHeadersFlag defines a list of headers to send with all gRPC requests.
|
|
GrpcHeadersFlag = &cli.StringFlag{
|
|
Name: "grpc-headers",
|
|
Usage: "A comma separated list of key value pairs to pass as gRPC headers for all gRPC " +
|
|
"calls. Example: --grpc-headers=key=value",
|
|
}
|
|
// KeyManager specifies the key manager to use.
|
|
KeyManager = &cli.StringFlag{
|
|
Name: "keymanager",
|
|
Usage: "The keymanger to use (unencrypted, interop, keystore, wallet)",
|
|
Value: "",
|
|
}
|
|
// KeyManagerOpts specifies the key manager options.
|
|
KeyManagerOpts = &cli.StringFlag{
|
|
Name: "keymanageropts",
|
|
Usage: "The options for the keymanger, either a JSON string or path to same",
|
|
Value: "",
|
|
}
|
|
// KeystorePathFlag defines the location of the keystore directory for a validator's account.
|
|
KeystorePathFlag = &cli.StringFlag{
|
|
Name: "keystore-path",
|
|
Usage: "Path to the desired keystore directory",
|
|
}
|
|
// MonitoringPortFlag defines the http port used to serve prometheus metrics.
|
|
MonitoringPortFlag = &cli.Int64Flag{
|
|
Name: "monitoring-port",
|
|
Usage: "Port used to listening and respond metrics for prometheus.",
|
|
Value: 8081,
|
|
}
|
|
// NoCustomConfigFlag determines whether to launch a beacon chain using real parameters or demo parameters.
|
|
NoCustomConfigFlag = &cli.BoolFlag{
|
|
Name: "no-custom-config",
|
|
Usage: "Run the beacon chain with the real parameters from phase 0.",
|
|
}
|
|
// PasswordFlag defines the password value for storing and retrieving validator private keys from the keystore.
|
|
PasswordFlag = &cli.StringFlag{
|
|
Name: "password",
|
|
Usage: "String value of the password for your validator private keys",
|
|
}
|
|
// UnencryptedKeysFlag specifies a file path of a JSON file of unencrypted validator keys as an
|
|
// alternative from launching the validator client from decrypting a keystore directory.
|
|
UnencryptedKeysFlag = &cli.StringFlag{
|
|
Name: "unencrypted-keys",
|
|
Usage: "Filepath to a JSON file of unencrypted validator keys for easier launching of the validator client",
|
|
Value: "",
|
|
}
|
|
)
|