Files
prysm/cmd/validator/accounts/list.go
Bastin 92bd211e4d upgrade v6 to v7 (#15989)
* upgrade v6 to v7

* changelog

* update-go-ssz
2025-11-06 16:16:23 +00:00

48 lines
1.3 KiB
Go

package accounts
import (
"strings"
"github.com/OffchainLabs/prysm/v7/cmd"
"github.com/OffchainLabs/prysm/v7/cmd/validator/flags"
"github.com/OffchainLabs/prysm/v7/validator/accounts"
"github.com/OffchainLabs/prysm/v7/validator/client"
"github.com/urfave/cli/v2"
)
func accountsList(c *cli.Context) error {
w, km, err := walletWithKeymanager(c)
if err != nil {
return err
}
dialOpts := client.ConstructDialOptions(
c.Int(cmd.GrpcMaxCallRecvMsgSizeFlag.Name),
c.String(flags.CertFlag.Name),
c.Uint(flags.GRPCRetriesFlag.Name),
c.Duration(flags.GRPCRetryDelayFlag.Name),
)
grpcHeaders := strings.Split(c.String(flags.GRPCHeadersFlag.Name), ",")
opts := []accounts.Option{
accounts.WithWallet(w),
accounts.WithKeymanager(km),
accounts.WithGRPCDialOpts(dialOpts),
accounts.WithBeaconRPCProvider(c.String(flags.BeaconRPCProviderFlag.Name)),
accounts.WithBeaconRESTApiProvider(c.String(flags.BeaconRESTApiProviderFlag.Name)),
accounts.WithGRPCHeaders(grpcHeaders),
}
if c.IsSet(flags.ShowPrivateKeysFlag.Name) {
opts = append(opts, accounts.WithShowPrivateKeys())
}
if c.IsSet(flags.ListValidatorIndices.Name) {
opts = append(opts, accounts.WithListValidatorIndices())
}
acc, err := accounts.NewCLIManager(opts...)
if err != nil {
return err
}
return acc.List(
c.Context,
)
}