mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
8aa6057b60
* Wallet edit CLI Manager migration * TODO for code deduplication * s/walletEdit/remoteWalletEdit/g * s/walletEdit/remoteWalletEdit/g * remove unused struct field Co-authored-by: james-prysm <90280386+james-prysm@users.noreply.github.com>
55 lines
1.5 KiB
Go
55 lines
1.5 KiB
Go
package wallet
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/prysmaticlabs/prysm/validator/accounts"
|
|
"github.com/prysmaticlabs/prysm/validator/accounts/userprompt"
|
|
"github.com/prysmaticlabs/prysm/validator/accounts/wallet"
|
|
"github.com/prysmaticlabs/prysm/validator/keymanager"
|
|
"github.com/prysmaticlabs/prysm/validator/keymanager/remote"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
func remoteWalletEdit(c *cli.Context) error {
|
|
w, err := wallet.OpenWalletOrElseCli(c, func(cliCtx *cli.Context) (*wallet.Wallet, error) {
|
|
return nil, wallet.ErrNoWalletFound
|
|
})
|
|
if err != nil {
|
|
return errors.Wrap(err, "could not open wallet")
|
|
}
|
|
if w.KeymanagerKind() != keymanager.Remote {
|
|
return errors.New(
|
|
fmt.Sprintf("Keymanager type: %s doesn't support configuration editing",
|
|
w.KeymanagerKind().String()))
|
|
}
|
|
|
|
enc, err := w.ReadKeymanagerConfigFromDisk(c.Context)
|
|
if err != nil {
|
|
return errors.Wrap(err, "could not read config")
|
|
}
|
|
fileOpts, err := remote.UnmarshalOptionsFile(enc)
|
|
if err != nil {
|
|
return errors.Wrap(err, "could not unmarshal config")
|
|
}
|
|
log.Info("Current configuration")
|
|
// Prints the current configuration to stdout.
|
|
fmt.Println(fileOpts)
|
|
newCfg, err := userprompt.InputRemoteKeymanagerConfig(c)
|
|
if err != nil {
|
|
return errors.Wrap(err, "could not get keymanager config")
|
|
}
|
|
|
|
opts := []accounts.Option{
|
|
accounts.WithWallet(w),
|
|
accounts.WithKeymanagerOpts(newCfg),
|
|
}
|
|
|
|
acc, err := accounts.NewCLIManager(opts...)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return acc.WalletEdit(c.Context)
|
|
}
|