mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 01:04:29 +00:00
394bd1786a
* fixing squashing changes, migrates beacon , account, and auth endpoints on validator client * adding accounts endpoints * fixing tests and query endpoints * adding auth endpoint and fixing unit tests * removing unused files and updating node file to skip gRPC * ineffectual assignment fix * rolling back a change to fix e2e * fixing issues with ui * updating with webui version 2.0.5 * updating package name flag in readme * removing restore assets functions * adding nomemcopy flag to see if vulenerability scan passes * making data non compressed to avoid copy vulnerability * Update beacon-chain/rpc/eth/shared/structs_validator.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> * updating site_data, and skipping static analysis on file * adding back deprecation comment notice * updating workflows to ignore generated * addressing radek comments * missed a conversion --------- Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
59 lines
2.1 KiB
Go
59 lines
2.1 KiB
Go
package rpc
|
|
|
|
import (
|
|
middleware "github.com/grpc-ecosystem/go-grpc-middleware"
|
|
grpcretry "github.com/grpc-ecosystem/go-grpc-middleware/retry"
|
|
grpcopentracing "github.com/grpc-ecosystem/go-grpc-middleware/tracing/opentracing"
|
|
grpcprometheus "github.com/grpc-ecosystem/go-grpc-prometheus"
|
|
"github.com/pkg/errors"
|
|
grpcutil "github.com/prysmaticlabs/prysm/v4/api/grpc"
|
|
ethpb "github.com/prysmaticlabs/prysm/v4/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/v4/validator/client"
|
|
beaconChainClientFactory "github.com/prysmaticlabs/prysm/v4/validator/client/beacon-chain-client-factory"
|
|
nodeClientFactory "github.com/prysmaticlabs/prysm/v4/validator/client/node-client-factory"
|
|
validatorClientFactory "github.com/prysmaticlabs/prysm/v4/validator/client/validator-client-factory"
|
|
validatorHelpers "github.com/prysmaticlabs/prysm/v4/validator/helpers"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
// Initialize a client connect to a beacon node gRPC endpoint.
|
|
func (s *Server) registerBeaconClient() error {
|
|
streamInterceptor := grpc.WithStreamInterceptor(middleware.ChainStreamClient(
|
|
grpcopentracing.StreamClientInterceptor(),
|
|
grpcprometheus.StreamClientInterceptor,
|
|
grpcretry.StreamClientInterceptor(),
|
|
))
|
|
dialOpts := client.ConstructDialOptions(
|
|
s.clientMaxCallRecvMsgSize,
|
|
s.clientWithCert,
|
|
s.clientGrpcRetries,
|
|
s.clientGrpcRetryDelay,
|
|
streamInterceptor,
|
|
)
|
|
if dialOpts == nil {
|
|
return errors.New("no dial options for beacon chain gRPC client")
|
|
}
|
|
|
|
s.ctx = grpcutil.AppendHeaders(s.ctx, s.clientGrpcHeaders)
|
|
|
|
grpcConn, err := grpc.DialContext(s.ctx, s.beaconClientEndpoint, dialOpts...)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "could not dial endpoint: %s", s.beaconClientEndpoint)
|
|
}
|
|
if s.clientWithCert != "" {
|
|
log.Info("Established secure gRPC connection")
|
|
}
|
|
s.beaconNodeHealthClient = ethpb.NewHealthClient(grpcConn)
|
|
|
|
conn := validatorHelpers.NewNodeConnection(
|
|
grpcConn,
|
|
s.beaconApiEndpoint,
|
|
s.beaconApiTimeout,
|
|
)
|
|
|
|
s.beaconChainClient = beaconChainClientFactory.NewBeaconChainClient(conn)
|
|
s.beaconNodeClient = nodeClientFactory.NewNodeClient(conn)
|
|
s.beaconNodeValidatorClient = validatorClientFactory.NewValidatorClient(conn)
|
|
return nil
|
|
}
|