mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 09:14:28 +00:00
5b12f5a27d
* Integrate builder client into builder service * Do nothing if pubkey is not found Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
46 lines
1.2 KiB
Go
46 lines
1.2 KiB
Go
package builder
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/db"
|
|
"github.com/prysmaticlabs/prysm/cmd/beacon-chain/flags"
|
|
"github.com/prysmaticlabs/prysm/network"
|
|
"github.com/prysmaticlabs/prysm/network/authorization"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
type Option func(s *Service) error
|
|
|
|
// FlagOptions for builder service flag configurations.
|
|
func FlagOptions(c *cli.Context) ([]Option, error) {
|
|
endpoint := c.String(flags.MevRelayEndpoint.Name)
|
|
opts := []Option{
|
|
WithBuilderEndpoints(endpoint),
|
|
}
|
|
return opts, nil
|
|
}
|
|
|
|
// WithBuilderEndpoints sets the endpoint for the beacon chain builder service.
|
|
func WithBuilderEndpoints(endpoint string) Option {
|
|
return func(s *Service) error {
|
|
s.cfg.builderEndpoint = covertEndPoint(endpoint)
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// WithDatabase sets the database for the beacon chain builder service.
|
|
func WithDatabase(database db.HeadAccessDatabase) Option {
|
|
return func(s *Service) error {
|
|
s.cfg.beaconDB = database
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func covertEndPoint(ep string) network.Endpoint {
|
|
return network.Endpoint{
|
|
Url: ep,
|
|
Auth: network.AuthorizationData{ // Auth is not used for builder.
|
|
Method: authorization.None,
|
|
Value: "",
|
|
}}
|
|
}
|