prysm-pulse/validator/accounts/v2/cmd_accounts.go
Ivan Martinez 8a65af168d
Accounts V2: Change fatal logs to return errors (#6672)
* Change logging out errors to returns
* Merge branch 'master' of github.com:prysmaticlabs/prysm into change-logs-to-return
* Lint
* Merge branch 'master' into change-logs-to-return
2020-07-22 02:04:08 +00:00

82 lines
2.5 KiB
Go

package v2
import (
"github.com/prysmaticlabs/prysm/validator/flags"
"github.com/urfave/cli/v2"
)
// AccountCommands for accounts-v2 for Prysm validators.
var AccountCommands = &cli.Command{
Name: "accounts-v2",
Category: "accounts",
Usage: "defines commands for interacting with eth2 validator accounts (work in progress)",
Subcommands: []*cli.Command{
// AccountCommands for accounts-v2 for Prysm validators.
{
Name: "new",
Description: `creates a new validator account for eth2. If no account exists at the wallet path, creates a new wallet for a user based on
specified input, capable of creating a direct, derived, or remote wallet.
this command outputs a deposit data string which is required to become a validator in eth2.`,
Flags: []cli.Flag{
flags.WalletDirFlag,
flags.WalletPasswordsDirFlag,
flags.PasswordFileFlag,
flags.SkipMnemonicConfirmFlag,
},
Action: func(cliCtx *cli.Context) error {
if err := NewAccount(cliCtx); err != nil {
log.WithError(err).Fatal("Could not create new account")
}
return nil
},
},
{
Name: "list",
Description: "Lists all validator accounts in a user's wallet directory",
Flags: []cli.Flag{
flags.WalletDirFlag,
flags.WalletPasswordsDirFlag,
flags.ShowDepositDataFlag,
},
Action: func(cliCtx *cli.Context) error {
if err := ListAccounts(cliCtx); err != nil {
log.WithError(err).Fatal("Could not list accounts")
}
return nil
},
},
{
Name: "export",
Description: `exports the account of a given directory into a zip of the provided output path. This zip can be used to later import the account to another directory`,
Flags: []cli.Flag{
flags.WalletDirFlag,
flags.WalletPasswordsDirFlag,
flags.BackupPathFlag,
flags.AccountsFlag,
},
Action: func(cliCtx *cli.Context) error {
if err := ExportAccount(cliCtx); err != nil {
log.WithError(err).Fatal("Could not export accounts")
}
return nil
},
},
{
Name: "import",
Description: `imports the accounts from a given zip file to the provided wallet path. This zip can be created using the export command`,
Flags: []cli.Flag{
flags.WalletDirFlag,
flags.WalletPasswordsDirFlag,
flags.BackupPathFlag,
flags.PasswordFileFlag,
},
Action: func(cliCtx *cli.Context) error {
if err := ImportAccount(cliCtx); err != nil {
log.WithError(err).Fatal("Could not import accounts")
}
return nil
},
},
},
}