Documentation ¶
Index ¶
- Variables
- func NewOnchainKeyringV3Wrapper(keyring types.OnchainKeyring) *onchainKeyringV3Wrapper
- func NewPayloadBuilder(activeUpkeepList ActiveUpkeepList, recoverer logprovider.LogRecoverer, ...) *payloadBuilder
- func NewUpkeepProvider(activeUpkeeps ActiveUpkeepList, bs *BlockSubscriber, lp logpoller.LogPoller) *upkeepProvider
- func RegistryUpkeepFilterName(addr common.Address) string
- type ActiveUpkeepList
- type AutomationServices
- type BlockSubscriber
- func (bs *BlockSubscriber) Close() error
- func (bs *BlockSubscriber) LatestBlock() *ocr2keepers.BlockKey
- func (bs *BlockSubscriber) Start(ctx context.Context) error
- func (bs *BlockSubscriber) Subscribe() (int, chan ocr2keepers.BlockHistory, error)
- func (bs *BlockSubscriber) Unsubscribe(subId int) error
- type EvmRegistry
- func (r *EvmRegistry) CheckUpkeeps(ctx context.Context, keys ...ocr2keepers.UpkeepPayload) ([]ocr2keepers.CheckResult, error)
- func (r *EvmRegistry) Close() error
- func (r *EvmRegistry) HealthReport() map[string]error
- func (r *EvmRegistry) Name() string
- func (r *EvmRegistry) Start(ctx context.Context) error
- type HttpClient
- type MercuryConfig
- func (c *MercuryConfig) Credentials() *types.MercuryCredentials
- func (c *MercuryConfig) GetPluginRetry(k string) (interface{}, bool)
- func (c *MercuryConfig) IsUpkeepAllowed(k string) (interface{}, bool)
- func (c *MercuryConfig) SetPluginRetry(k string, v interface{}, d time.Duration)
- func (c *MercuryConfig) SetUpkeepAllowed(k string, v interface{}, d time.Duration)
- type Registry
Constants ¶
This section is empty.
Variables ¶
View Source
var ( RegistryServiceName = "AutomationRegistry" ErrLogReadFailure = fmt.Errorf("failure reading logs") ErrHeadNotAvailable = fmt.Errorf("head not available") ErrInitializationFailure = fmt.Errorf("failed to initialize registry") ErrContextCancelled = fmt.Errorf("context was cancelled") ErrABINotParsable = fmt.Errorf("error parsing abi") ActiveUpkeepIDBatchSize int64 = 1000 )
View Source
var (
BlockSubscriberServiceName = "BlockSubscriber"
)
Functions ¶
func NewOnchainKeyringV3Wrapper ¶
func NewOnchainKeyringV3Wrapper(keyring types.OnchainKeyring) *onchainKeyringV3Wrapper
func NewPayloadBuilder ¶
func NewPayloadBuilder(activeUpkeepList ActiveUpkeepList, recoverer logprovider.LogRecoverer, lggr logger.Logger) *payloadBuilder
func NewUpkeepProvider ¶
func NewUpkeepProvider(activeUpkeeps ActiveUpkeepList, bs *BlockSubscriber, lp logpoller.LogPoller) *upkeepProvider
Types ¶
type ActiveUpkeepList ¶
type ActiveUpkeepList interface { // Reset resets the list to the given IDs Reset(ids ...*big.Int) // Add adds new entries to the list Add(id ...*big.Int) int // Remove removes entries from the list Remove(id ...*big.Int) int // View returns the list of IDs of the given type View(...types.UpkeepType) []*big.Int // IsActive returns true if the given ID is of an active upkeep IsActive(id *big.Int) bool Size() int }
ActiveUpkeepList is a list to manage active upkeep IDs
func NewActiveUpkeepList ¶
func NewActiveUpkeepList() ActiveUpkeepList
NewActiveList creates a new ActiveList
type AutomationServices ¶
type AutomationServices interface {
Keyring() ocr3types.OnchainKeyring[plugin.AutomationReportInfo]
}
func New ¶
func New(keyring ocrtypes.OnchainKeyring) (AutomationServices, error)
type BlockSubscriber ¶
type BlockSubscriber struct { services.StateMachine // contains filtered or unexported fields }
func NewBlockSubscriber ¶
func NewBlockSubscriber(hb httypes.HeadBroadcaster, lp logpoller.LogPoller, finalityDepth uint32, lggr logger.Logger) *BlockSubscriber
func (*BlockSubscriber) Close ¶
func (bs *BlockSubscriber) Close() error
func (*BlockSubscriber) LatestBlock ¶
func (bs *BlockSubscriber) LatestBlock() *ocr2keepers.BlockKey
func (*BlockSubscriber) Subscribe ¶
func (bs *BlockSubscriber) Subscribe() (int, chan ocr2keepers.BlockHistory, error)
func (*BlockSubscriber) Unsubscribe ¶
func (bs *BlockSubscriber) Unsubscribe(subId int) error
type EvmRegistry ¶
type EvmRegistry struct { services.StateMachine // contains filtered or unexported fields }
func NewEvmRegistry ¶
func NewEvmRegistry( lggr logger.Logger, addr common.Address, client legacyevm.Chain, registry *ac.IAutomationV21PlusCommon, mc *types.MercuryCredentials, al ActiveUpkeepList, logEventProvider logprovider.LogEventProvider, packer encoding.Packer, blockSub *BlockSubscriber, finalityDepth uint32, ) *EvmRegistry
func (*EvmRegistry) CheckUpkeeps ¶
func (r *EvmRegistry) CheckUpkeeps(ctx context.Context, keys ...ocr2keepers.UpkeepPayload) ([]ocr2keepers.CheckResult, error)
func (*EvmRegistry) Close ¶
func (r *EvmRegistry) Close() error
func (*EvmRegistry) HealthReport ¶
func (r *EvmRegistry) HealthReport() map[string]error
func (*EvmRegistry) Name ¶
func (r *EvmRegistry) Name() string
type MercuryConfig ¶
type MercuryConfig struct { Abi abi.ABI // AllowListCache stores the upkeeps privileges. In 2.1, this only includes a JSON bytes for allowed to use mercury AllowListCache *cache.Cache // contains filtered or unexported fields }
func NewMercuryConfig ¶
func NewMercuryConfig(cred *types.MercuryCredentials, abi abi.ABI) *MercuryConfig
func (*MercuryConfig) Credentials ¶
func (c *MercuryConfig) Credentials() *types.MercuryCredentials
func (*MercuryConfig) GetPluginRetry ¶
func (c *MercuryConfig) GetPluginRetry(k string) (interface{}, bool)
func (*MercuryConfig) IsUpkeepAllowed ¶
func (c *MercuryConfig) IsUpkeepAllowed(k string) (interface{}, bool)
func (*MercuryConfig) SetPluginRetry ¶
func (c *MercuryConfig) SetPluginRetry(k string, v interface{}, d time.Duration)
func (*MercuryConfig) SetUpkeepAllowed ¶
func (c *MercuryConfig) SetUpkeepAllowed(k string, v interface{}, d time.Duration)
type Registry ¶
type Registry interface { GetUpkeep(opts *bind.CallOpts, id *big.Int) (encoding.UpkeepInfo, error) GetState(opts *bind.CallOpts) (ac.GetState, error) GetActiveUpkeepIDs(opts *bind.CallOpts, startIndex *big.Int, maxCount *big.Int) ([]*big.Int, error) GetUpkeepPrivilegeConfig(opts *bind.CallOpts, upkeepId *big.Int) ([]byte, error) GetUpkeepTriggerConfig(opts *bind.CallOpts, upkeepId *big.Int) ([]byte, error) CheckCallback(opts *bind.CallOpts, id *big.Int, values [][]byte, extraData []byte) (ac.CheckCallback, error) ParseLog(log coreTypes.Log) (generated.AbigenLog, error) }
Source Files ¶
Click to show internal directories.
Click to hide internal directories.