Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Commands = &cli.Command{ Name: "web", Category: "web", Usage: "defines commands for interacting with the Prysm web interface", Subcommands: []*cli.Command{ { Name: "generate-auth-token", Description: `Generate an authentication token for the Prysm web interface`, Flags: cmd.WrapFlags([]cli.Flag{ flags.WalletDirFlag, flags.GRPCGatewayHost, flags.GRPCGatewayPort, cmd.AcceptTosFlag, }), Before: func(cliCtx *cli.Context) error { if err := cmd.LoadFlagsFromConfig(cliCtx, cliCtx.Command.Flags); err != nil { return err } return tos.VerifyTosAcceptedOrPrompt(cliCtx) }, Action: func(cliCtx *cli.Context) error { if err := features.ConfigureValidator(cliCtx); err != nil { return err } walletDirPath := cliCtx.String(flags.WalletDirFlag.Name) if walletDirPath == "" { log.Fatal("--wallet-dir not specified") } gatewayHost := cliCtx.String(flags.GRPCGatewayHost.Name) gatewayPort := cliCtx.Int(flags.GRPCGatewayPort.Name) validatorWebAddr := fmt.Sprintf("%s:%d", gatewayHost, gatewayPort) if err := rpc.CreateAuthToken(walletDirPath, validatorWebAddr); err != nil { log.WithError(err).Fatal("Could not create web auth token") } return nil }, }, }, }
Commands for managing Prysm validator accounts.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.