mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 11:11:20 +00:00
52e9155df3
* Change `validator accounts-v2` to `validator wallet-v2 accounts-v2 * Change to accounts * Fix cmd * Rename cmd.go to cmd_accounts.go
21 lines
507 B
Go
21 lines
507 B
Go
package v2
|
|
|
|
import (
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// Commands for accounts-v2 for Prysm validators.
|
|
var Commands = &cli.Command{
|
|
Name: "wallet-v2",
|
|
Category: "wallet-v2",
|
|
Usage: "defines commands for interacting with eth2 validator wallets (work in progress)",
|
|
Subcommands: []*cli.Command{
|
|
{
|
|
Name: "accounts",
|
|
Category: "accounts",
|
|
Usage: "defines commands for interacting with eth2 validator accounts (work in progress)",
|
|
Subcommands: AccountCommands,
|
|
},
|
|
},
|
|
}
|