mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 03:31:20 +00:00
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,
|
||
|
},
|
||
|
},
|
||
|
}
|