mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 02:31:19 +00:00
886d76fe7c
* Define `cli.App` without mutation. No functional change. * `usage.go`: Clean `appHelpTemplate`. No functional change is added. Modifications consist in adding prefix/suffix `-` to improve readability of the template without adding new lines in template inference. We now see some inconsistencies of the template: - `if .App.Version` is around the `AUTHOR` section. - `if .App.Copyright` is around both `COPYRIGHT` and `VERSION` sections. - `if len .App.Authors` is around nothing. * `usage.go`: Surround version and author correctly. * `usage.go`: `AUTHOR` ==> `AUTHORS` * `usage.go`: `GLOBAL` --> `global`. * `--grpc-max-msg-size`: Remove double default. * VC: Standardize help message. - Flags help begin with a capital letter and end with a period. - If a flag help begins with a verb, it is conjugated. - Expermitemtal, danger etc... mentions are between parenthesis. * VC help message: Wrap too long lines.
89 lines
2.6 KiB
Go
89 lines
2.6 KiB
Go
package wallet
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/v4/cmd"
|
|
"github.com/prysmaticlabs/prysm/v4/cmd/validator/flags"
|
|
"github.com/prysmaticlabs/prysm/v4/config/features"
|
|
"github.com/prysmaticlabs/prysm/v4/runtime/tos"
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
var log = logrus.WithField("prefix", "wallet")
|
|
|
|
// Commands for wallets for Prysm validators.
|
|
var Commands = &cli.Command{
|
|
Name: "wallet",
|
|
Category: "wallet",
|
|
Usage: "Defines commands for interacting with Ethereum validator wallets.",
|
|
Subcommands: []*cli.Command{
|
|
{
|
|
Name: "create",
|
|
Usage: "creates a new wallet with a desired type of keymanager: " +
|
|
"either on-disk (imported), derived, or using remote credentials",
|
|
Flags: cmd.WrapFlags([]cli.Flag{
|
|
flags.WalletDirFlag,
|
|
flags.KeymanagerKindFlag,
|
|
flags.RemoteSignerCertPathFlag,
|
|
flags.RemoteSignerKeyPathFlag,
|
|
flags.RemoteSignerCACertPathFlag,
|
|
flags.WalletPasswordFileFlag,
|
|
flags.Mnemonic25thWordFileFlag,
|
|
flags.SkipMnemonic25thWordCheckFlag,
|
|
features.Mainnet,
|
|
features.PraterTestnet,
|
|
features.SepoliaTestnet,
|
|
features.HoleskyTestnet,
|
|
cmd.AcceptTosFlag,
|
|
}),
|
|
Before: func(cliCtx *cli.Context) error {
|
|
if err := cmd.LoadFlagsFromConfig(cliCtx, cliCtx.Command.Flags); err != nil {
|
|
return err
|
|
}
|
|
if err := tos.VerifyTosAcceptedOrPrompt(cliCtx); err != nil {
|
|
return err
|
|
}
|
|
return features.ConfigureValidator(cliCtx)
|
|
},
|
|
Action: func(cliCtx *cli.Context) error {
|
|
if err := walletCreate(cliCtx); err != nil {
|
|
log.WithError(err).Fatal("Could not create a wallet")
|
|
}
|
|
return nil
|
|
},
|
|
},
|
|
{
|
|
Name: "recover",
|
|
Usage: "uses a derived wallet seed recovery phase to recreate an existing HD wallet",
|
|
Flags: cmd.WrapFlags([]cli.Flag{
|
|
flags.WalletDirFlag,
|
|
flags.MnemonicFileFlag,
|
|
flags.WalletPasswordFileFlag,
|
|
flags.NumAccountsFlag,
|
|
flags.Mnemonic25thWordFileFlag,
|
|
flags.SkipMnemonic25thWordCheckFlag,
|
|
features.Mainnet,
|
|
features.PraterTestnet,
|
|
features.SepoliaTestnet,
|
|
features.HoleskyTestnet,
|
|
cmd.AcceptTosFlag,
|
|
}),
|
|
Before: func(cliCtx *cli.Context) error {
|
|
if err := cmd.LoadFlagsFromConfig(cliCtx, cliCtx.Command.Flags); err != nil {
|
|
return err
|
|
}
|
|
if err := tos.VerifyTosAcceptedOrPrompt(cliCtx); err != nil {
|
|
return err
|
|
}
|
|
return features.ConfigureBeaconChain(cliCtx)
|
|
},
|
|
Action: func(cliCtx *cli.Context) error {
|
|
if err := walletRecover(cliCtx); err != nil {
|
|
log.WithError(err).Fatal("Could not recover wallet")
|
|
}
|
|
return nil
|
|
},
|
|
},
|
|
},
|
|
}
|