mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 20:07:17 +00:00
55 lines
1.4 KiB
Go
55 lines
1.4 KiB
Go
package builder
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/blockchain"
|
|
"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
|
|
}
|
|
}
|
|
|
|
// WithHeadFetcher gets the head info from chain service.
|
|
func WithHeadFetcher(svc *blockchain.Service) Option {
|
|
return func(s *Service) error {
|
|
s.cfg.headFetcher = svc
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// WithDatabase for head access.
|
|
func WithDatabase(beaconDB db.HeadAccessDatabase) Option {
|
|
return func(s *Service) error {
|
|
s.cfg.beaconDB = beaconDB
|
|
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: "",
|
|
}}
|
|
}
|