mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 20:07:17 +00:00
ead9a83d8d
* WIP * Refactor to use iface.ValidatorClient instead of ethpb.BeaconNodeValidatorClient * Add mocks for iface.ValidatorClient * Fix mocks * Update update-mockgen.sh * Fix warnings * Fix config_setting syntax * Use custom build settings * WIP * WIP * WIP * WIP * WIP * WIP * Fix endpoint address and reduce timeout * Revert most e2e changes * Use e2e.TestParams.Ports.PrysmBeaconNodeGatewayPort * Fix BeaconRESTApiProviderFlag port * Revert e2e changes
88 lines
2.8 KiB
Go
88 lines
2.8 KiB
Go
package accounts
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/pkg/errors"
|
|
grpcutil "github.com/prysmaticlabs/prysm/v3/api/grpc"
|
|
"github.com/prysmaticlabs/prysm/v3/crypto/bls"
|
|
ethpb "github.com/prysmaticlabs/prysm/v3/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/v3/validator/accounts/wallet"
|
|
iface "github.com/prysmaticlabs/prysm/v3/validator/client/iface"
|
|
validatorClientFactory "github.com/prysmaticlabs/prysm/v3/validator/client/validator-client-factory"
|
|
validatorHelpers "github.com/prysmaticlabs/prysm/v3/validator/helpers"
|
|
"github.com/prysmaticlabs/prysm/v3/validator/keymanager"
|
|
"github.com/prysmaticlabs/prysm/v3/validator/keymanager/remote"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
// NewCLIManager allows for managing validator accounts via CLI commands.
|
|
func NewCLIManager(opts ...Option) (*AccountsCLIManager, error) {
|
|
acc := &AccountsCLIManager{}
|
|
for _, opt := range opts {
|
|
if err := opt(acc); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return acc, nil
|
|
}
|
|
|
|
// AccountsCLIManager defines a struct capable of performing various validator
|
|
// wallet & account operations via the command line.
|
|
type AccountsCLIManager struct {
|
|
wallet *wallet.Wallet
|
|
keymanager keymanager.IKeymanager
|
|
keymanagerKind keymanager.Kind
|
|
keymanagerOpts *remote.KeymanagerOpts
|
|
showDepositData bool
|
|
showPrivateKeys bool
|
|
listValidatorIndices bool
|
|
deletePublicKeys bool
|
|
importPrivateKeys bool
|
|
readPasswordFile bool
|
|
skipMnemonicConfirm bool
|
|
dialOpts []grpc.DialOption
|
|
grpcHeaders []string
|
|
beaconRPCProvider string
|
|
walletKeyCount int
|
|
privateKeyFile string
|
|
passwordFilePath string
|
|
keysDir string
|
|
mnemonicLanguage string
|
|
backupsDir string
|
|
backupsPassword string
|
|
filteredPubKeys []bls.PublicKey
|
|
rawPubKeys [][]byte
|
|
formattedPubKeys []string
|
|
walletDir string
|
|
walletPassword string
|
|
mnemonic string
|
|
numAccounts int
|
|
mnemonic25thWord string
|
|
beaconApiEndpoint string
|
|
beaconApiTimeout time.Duration
|
|
}
|
|
|
|
func (acm *AccountsCLIManager) prepareBeaconClients(ctx context.Context) (*iface.ValidatorClient, *ethpb.NodeClient, error) {
|
|
if acm.dialOpts == nil {
|
|
return nil, nil, errors.New("failed to construct dial options for beacon clients")
|
|
}
|
|
|
|
ctx = grpcutil.AppendHeaders(ctx, acm.grpcHeaders)
|
|
grpcConn, err := grpc.DialContext(ctx, acm.beaconRPCProvider, acm.dialOpts...)
|
|
if err != nil {
|
|
return nil, nil, errors.Wrapf(err, "could not dial endpoint %s", acm.beaconRPCProvider)
|
|
}
|
|
|
|
conn := validatorHelpers.NewNodeConnection(
|
|
grpcConn,
|
|
acm.beaconApiEndpoint,
|
|
acm.beaconApiTimeout,
|
|
)
|
|
|
|
validatorClient := validatorClientFactory.NewValidatorClient(conn)
|
|
nodeClient := ethpb.NewNodeClient(grpcConn)
|
|
return &validatorClient, &nodeClient, nil
|
|
}
|