mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-17 07:18:46 +00:00
f12f75224e
* begin on the proto definitions * define remote signer service protos * basic implementation * remote keymanager docs * finalize remote client doc * amend response * fix proto defs * test new and begin test sign * test sign done * remote oneof * rename * fix build * viz * Update validator/keymanager/v2/remote/remote_test.go Co-authored-by: Ivan Martinez <ivanthegreatdev@gmail.com> * Update validator/accounts/v2/wallet.go Co-authored-by: Ivan Martinez <ivanthegreatdev@gmail.com> * fmt * move the input check to accounts new * begin on requesting cli input for remote keymanager config * move the input check to accounts new * begin on requesting cli input for remote keymanager config * define wallet v2 * create wallet most logic done * init remote wallet * create wallet moving nicely * ensure wallet create works * reenable import export list * further refactor * improve handling of input wallet dir * add all validation to cert path checks * lint * list test * new wallet lint Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: Ivan Martinez <ivanthegreatdev@gmail.com>
21 lines
514 B
Go
21 lines
514 B
Go
package v2
|
|
|
|
import (
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// WalletCommands for accounts-v2 for Prysm validators.
|
|
var WalletCommands = &cli.Command{
|
|
Name: "wallet-v2",
|
|
Category: "wallet-v2",
|
|
Usage: "defines commands for interacting with eth2 validator wallets (work in progress)",
|
|
Subcommands: []*cli.Command{
|
|
{
|
|
Name: "create",
|
|
Usage: "creates a new wallet with a desired type of keymanager: " +
|
|
"either on-disk (direct), derived, or using remote credentials",
|
|
Action: CreateWallet,
|
|
},
|
|
},
|
|
}
|