operator

package
v0.0.8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 15, 2021 License: GPL-3.0 Imports: 19 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Node

type Node interface {
	Start() error
	StartEth1(syncOffset *eth1.SyncOffset) error
}

Node represents the behavior of SSV node

func New

func New(opts Options) Node

New is the constructor of operatorNode

type Options

type Options struct {
	ETHNetwork          *core.Network
	Beacon              *beacon.Beacon
	Context             context.Context
	Logger              *zap.Logger
	Eth1Client          eth1.Client
	DB                  basedb.IDb
	SlotQueue           slotqueue.Queue
	ValidatorController validator.IController
	// genesis epoch
	GenesisEpoch uint64 `yaml:"GenesisEpoch" env:"GENESIS_EPOCH" env-description:"Genesis Epoch SSV node will start"`
	// max slots for duty to wait
	//TODO switch to time frame?
	DutyLimit        uint64                      `yaml:"DutyLimit" env:"DUTY_LIMIT" env-default:"32" env-description:"max slots to wait for duty to start"`
	ValidatorOptions validator.ControllerOptions `yaml:"ValidatorOptions"`
}

Options contains options to create the node

type Storage

type Storage interface {
	eth1.SyncOffsetStorage

	GetPrivateKey() (*rsa.PrivateKey, error)
	SetupPrivateKey(operatorKey string) error
}

Storage represents the interface for ssv node storage

func NewOperatorNodeStorage

func NewOperatorNodeStorage(db basedb.IDb, logger *zap.Logger) Storage

NewOperatorNodeStorage creates a new instance of Storage

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL