mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 18:51:19 +00:00
d077483577
* v3 import renamings * tidy * fmt * rev * Update beacon-chain/core/epoch/precompute/reward_penalty_test.go * Update beacon-chain/core/helpers/validators_test.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/iface/BUILD.bazel * Update beacon-chain/db/kv/kv.go * Update beacon-chain/db/kv/state.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/sync/initial-sync/service.go * fix deps * fix bad replacements * fix bad replacements * change back * gohashtree version * fix deps Co-authored-by: Nishant Das <nishdas93@gmail.com> Co-authored-by: Potuz <potuz@prysmaticlabs.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/v3/validator/accounts"
|
|
"github.com/prysmaticlabs/prysm/v3/validator/accounts/userprompt"
|
|
"github.com/prysmaticlabs/prysm/v3/validator/accounts/wallet"
|
|
"github.com/prysmaticlabs/prysm/v3/validator/keymanager"
|
|
"github.com/prysmaticlabs/prysm/v3/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)
|
|
}
|