Documentation
¶
Index ¶
- Constants
- func RegisterOperator(ctx context.Context, configuration *config.OperatorConfig, ...) error
- type AggregatorRpcClient
- type Operator
- func (o *Operator) ProcessNewBatchLogV2(newBatchLog *servicemanager.ContractAlignedLayerServiceManagerNewBatchV2) error
- func (o *Operator) ProcessNewBatchLogV3(newBatchLog *servicemanager.ContractAlignedLayerServiceManagerNewBatchV3) error
- func (o *Operator) SignTaskResponse(batchIdentifierHash [32]byte) *bls.Signature
- func (o *Operator) Start(ctx context.Context) error
- func (o *Operator) SubscribeToNewTasksV2() (chan error, error)
- func (o *Operator) SubscribeToNewTasksV3() (chan error, error)
- type VerificationData
Constants ¶
View Source
const ( BatchDownloadTimeout = 1 * time.Minute BatchDownloadMaxRetries = 3 BatchDownloadRetryDelay = 5 * time.Second )
View Source
const ( MaxRetries = 10 RetryInterval = 10 * time.Second )
Variables ¶
This section is empty.
Functions ¶
func RegisterOperator ¶ added in v0.1.5
func RegisterOperator( ctx context.Context, configuration *config.OperatorConfig, operatorToAvsRegistrationSigSalt [32]byte, ) error
RegisterOperator operator registers the operator with the given public key for the given quorum IDs. RegisterOperator registers a new operator with the given public key and socket with the provided quorum ids. If the operator is already registered with a given quorum id, the transaction will fail (noop) and an error will be returned.
Types ¶
type AggregatorRpcClient ¶
type AggregatorRpcClient struct {
// contains filtered or unexported fields
}
AggregatorRpcClient is the client to communicate with the aggregator via RPC
func NewAggregatorRpcClient ¶
func NewAggregatorRpcClient(aggregatorIpPortAddr string, logger logging.Logger) (*AggregatorRpcClient, error)
func (*AggregatorRpcClient) SendSignedTaskResponseToAggregator ¶
func (c *AggregatorRpcClient) SendSignedTaskResponseToAggregator(signedTaskResponse *types.SignedTaskResponse)
SendSignedTaskResponseToAggregator is the method called by operators via RPC to send their signed task response.
type Operator ¶
type Operator struct {
Config config.OperatorConfig
Address ethcommon.Address
Socket string
Timeout time.Duration
PrivKey *ecdsa.PrivateKey
KeyPair *bls.KeyPair
OperatorId eigentypes.OperatorId
NewTaskCreatedChanV2 chan *servicemanager.ContractAlignedLayerServiceManagerNewBatchV2
NewTaskCreatedChanV3 chan *servicemanager.ContractAlignedLayerServiceManagerNewBatchV3
Logger logging.Logger
// contains filtered or unexported fields
}
func NewOperatorFromConfig ¶
func NewOperatorFromConfig(configuration config.OperatorConfig) (*Operator, error)
func (*Operator) ProcessNewBatchLogV2 ¶ added in v0.5.0
func (o *Operator) ProcessNewBatchLogV2(newBatchLog *servicemanager.ContractAlignedLayerServiceManagerNewBatchV2) error
func (*Operator) ProcessNewBatchLogV3 ¶ added in v0.7.0
func (o *Operator) ProcessNewBatchLogV3(newBatchLog *servicemanager.ContractAlignedLayerServiceManagerNewBatchV3) error
func (*Operator) SignTaskResponse ¶
func (*Operator) SubscribeToNewTasksV2 ¶ added in v0.5.0
func (*Operator) SubscribeToNewTasksV3 ¶ added in v0.7.0
type VerificationData ¶ added in v0.1.2
Click to show internal directories.
Click to hide internal directories.