mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
d077483577
* v3 import renamings * tidy * fmt * rev * Update beacon-chain/core/epoch/precompute/reward_penalty_test.go * Update beacon-chain/core/helpers/validators_test.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/iface/BUILD.bazel * Update beacon-chain/db/kv/kv.go * Update beacon-chain/db/kv/state.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/sync/initial-sync/service.go * fix deps * fix bad replacements * fix bad replacements * change back * gohashtree version * fix deps Co-authored-by: Nishant Das <nishdas93@gmail.com> Co-authored-by: Potuz <potuz@prysmaticlabs.com>
54 lines
1.6 KiB
Go
54 lines
1.6 KiB
Go
package web
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/prysmaticlabs/prysm/v3/cmd"
|
|
"github.com/prysmaticlabs/prysm/v3/cmd/validator/flags"
|
|
"github.com/prysmaticlabs/prysm/v3/config/features"
|
|
"github.com/prysmaticlabs/prysm/v3/runtime/tos"
|
|
"github.com/prysmaticlabs/prysm/v3/validator/rpc"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// Commands for managing Prysm validator accounts.
|
|
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
|
|
},
|
|
},
|
|
},
|
|
}
|