Documentation ¶
Index ¶
- type Parameter
- func WithActivitySem(sem *semaphore.Weighted) Parameter
- func WithChainDB(chainDB chaindb.Service) Parameter
- func WithChainTime(chainTime chaintime.Service) Parameter
- func WithETH2Client(eth2Client eth2client.Service) Parameter
- func WithLogLevel(logLevel zerolog.Level) Parameter
- func WithMonitor(monitor metrics.Service) Parameter
- func WithRefetch(refetch bool) Parameter
- func WithStartSlot(startSlot int64) Parameter
- type Service
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Parameter ¶
type Parameter interface {
// contains filtered or unexported methods
}
Parameter is the interface for service parameters.
func WithActivitySem ¶ added in v0.6.11
WithActivitySem sets the activity semaphore for this module.
func WithChainDB ¶
WithChainDB sets the chain database for this module.
func WithChainTime ¶
WithChainTime sets the chain time service for this module.
func WithETH2Client ¶
func WithETH2Client(eth2Client eth2client.Service) Parameter
WithETH2Client sets the Ethereum 2 client for this module.
func WithLogLevel ¶
WithLogLevel sets the log level for the module.
func WithMonitor ¶ added in v0.3.0
WithMonitor sets the monitor for the module.
func WithRefetch ¶ added in v0.1.5
WithRefetch sets the refetch flag for this module.
func WithStartSlot ¶
WithStartSlot sets the start slot for this module.
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
Service is a chain database service.
func (*Service) OnBeaconChainHeadUpdated ¶
func (s *Service) OnBeaconChainHeadUpdated( ctx context.Context, slot phase0.Slot, blockRoot phase0.Root, stateRoot phase0.Root, epochTransition bool, )
OnBeaconChainHeadUpdated receives beacon chain head updated notifications.
Click to show internal directories.
Click to hide internal directories.