Documentation ¶
Index ¶
- Constants
- type AutomationProvider
- type BoundContract
- type CCIPCommitFactoryGenerator
- type CCIPCommitProvider
- type CCIPExecProvider
- type CCIPExecutionFactoryGenerator
- type CCIPFactoryGenerator
- type CCIPOCR3CommitProvider
- type CCIPOCR3ExecuteProvider
- type ChainFeeComponents
- type ChainReaderdeprecated
- type ChainService
- type ChainStatus
- type ChainWriter
- type Codec
- type ConfigProvider
- type ContractReader
- type ContractTypeProvider
- type Decoder
- type Encoder
- type FunctionsEvents
- type FunctionsProvider
- type Head
- type InternalError
- type InvalidArgumentError
- type LLOProvider
- type MedianProvider
- type MercuryCredentials
- type MercuryPluginFactory
- type MercuryProvider
- type NodeStatus
- type NotFoundError
- type OCR2PluginType
- type OCR3CapabilityProvider
- type OCR3ContractTransmitter
- type OracleRequest
- type OracleResponse
- type Plugin
- type PluginArgs
- type PluginMercury
- type PluginProvider
- type RelayArgs
- type RelayID
- type Relayerdeprecated
- type RemoteCodec
- type ReportingPluginFactory
- type Sequence
- type Servicedeprecated
- type TransactionStatus
- type TxMeta
- type TypeProvider
- type UnimplementedError
Constants ¶
const ( ErrInvalidType = InvalidArgumentError("invalid type") ErrInvalidConfig = InvalidArgumentError("invalid configuration") ErrChainReaderConfigMissing = UnimplementedError("ChainReader entry missing from RelayConfig") ErrInternal = InternalError("internal error") ErrNotFound = NotFoundError("not found") )
Errors exposed to product plugins
const ( ErrFieldNotFound = InvalidArgumentError("field not found") ErrInvalidEncoding = InvalidArgumentError("invalid encoding") ErrSliceWrongLen = InvalidArgumentError("slice is wrong length") ErrNotASlice = InvalidArgumentError("element is not a slice") )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AutomationProvider ¶
type AutomationProvider interface { PluginProvider Registry() automation.Registry Encoder() automation.Encoder TransmitEventProvider() automation.EventProvider BlockSubscriber() automation.BlockSubscriber PayloadBuilder() automation.PayloadBuilder UpkeepStateStore() automation.UpkeepStateStore LogEventProvider() automation.LogEventProvider LogRecoverer() automation.LogRecoverer UpkeepProvider() automation.ConditionalUpkeepProvider }
AutomationProvider provides components needed for the automation OCR2 plugin.
type BoundContract ¶
func (BoundContract) Key ¶ added in v0.2.0
func (bc BoundContract) Key() string
type CCIPCommitFactoryGenerator ¶
type CCIPCommitFactoryGenerator interface {
NewCommitFactory(ctx context.Context, provider CCIPCommitProvider) (ReportingPluginFactory, error)
}
type CCIPCommitProvider ¶
type CCIPCommitProvider interface { PluginProvider NewCommitStoreReader(ctx context.Context, addr ccip.Address) (ccip.CommitStoreReader, error) NewOffRampReader(ctx context.Context, addr ccip.Address) (ccip.OffRampReader, error) NewOnRampReader(ctx context.Context, addr ccip.Address, sourceSelector uint64, destSelector uint64) (ccip.OnRampReader, error) NewPriceGetter(ctx context.Context) (ccip.PriceGetter, error) NewPriceRegistryReader(ctx context.Context, addr ccip.Address) (ccip.PriceRegistryReader, error) SourceNativeToken(ctx context.Context, addr ccip.Address) (ccip.Address, error) }
type CCIPExecProvider ¶
type CCIPExecProvider interface { PluginProvider GetTransactionStatus(ctx context.Context, transactionID string) (TransactionStatus, error) NewCommitStoreReader(ctx context.Context, addr ccip.Address) (ccip.CommitStoreReader, error) NewOffRampReader(ctx context.Context, addr ccip.Address) (ccip.OffRampReader, error) NewOnRampReader(ctx context.Context, addr ccip.Address, sourceSelector uint64, destSelector uint64) (ccip.OnRampReader, error) NewPriceRegistryReader(ctx context.Context, addr ccip.Address) (ccip.PriceRegistryReader, error) NewTokenDataReader(ctx context.Context, tokenAddress ccip.Address) (ccip.TokenDataReader, error) NewTokenPoolBatchedReader(ctx context.Context, offRampAddress ccip.Address, sourceSelector uint64) (ccip.TokenPoolBatchedReader, error) SourceNativeToken(ctx context.Context, addr ccip.Address) (ccip.Address, error) }
type CCIPExecutionFactoryGenerator ¶
type CCIPExecutionFactoryGenerator interface {
NewExecutionFactory(ctx context.Context, provider CCIPExecProvider) (ReportingPluginFactory, error)
}
type CCIPFactoryGenerator ¶
type CCIPFactoryGenerator interface { CCIPCommitFactoryGenerator CCIPExecutionFactoryGenerator }
type CCIPOCR3CommitProvider ¶
type CCIPOCR3CommitProvider interface { PluginProvider ReportCodec(ctx context.Context) (ccipocr3.CommitPluginCodec, error) MsgHasher(ctx context.Context) (ccipocr3.MessageHasher, error) }
type CCIPOCR3ExecuteProvider ¶
type CCIPOCR3ExecuteProvider interface { PluginProvider ReportCodec(ctx context.Context) (ccipocr3.ExecutePluginCodec, error) MsgHasher(ctx context.Context) (ccipocr3.MessageHasher, error) }
type ChainFeeComponents ¶
type ChainFeeComponents struct { // The cost of executing transaction in the chain's EVM (or the L2 environment). ExecutionFee *big.Int // The cost associated with an L2 posting a transaction's data to the L1. DataAvailabilityFee *big.Int }
ChainFeeComponents contains the different cost components of executing a transaction.
type ChainReader
deprecated
added in
v0.2.0
type ChainReader interface { services.Service // GetLatestValue gets the latest value with a certain confidence level that maps to blockchain finality.... // The params argument can be any object which maps a set of generic parameters into chain specific parameters defined in RelayConfig. // It must encode as an object via [json.Marshal] and [github.com/fxamacker/cbor/v2.Marshal]. // Typically, would be either a struct with field names mapping to arguments, or anonymous map such as `map[string]any{"baz": 42, "test": true}}` // // returnVal must [json.Unmarshal] and and [github.com/fxamacker/cbor/v2.Marshal] as an object. // // Example use: // type ProductParams struct { // ID int `json:"id"` // } // type ProductReturn struct { // Foo string `json:"foo"` // Bar *big.Int `json:"bar"` // } // func do(ctx context.Context, cr ChainReader) (resp ProductReturn, err error) { // err = cr.GetLatestValue(ctx, "FooContract", "GetProduct", primitives.Finalized, ProductParams{ID:1}, &resp) // return // } // // Note that implementations should ignore extra fields in params that are not expected in the call to allow easier // use across chains and contract versions. // Similarly, when using a struct for returnVal, fields in the return value that are not on-chain will not be set. GetLatestValue(ctx context.Context, contractName, method string, confidenceLevel primitives.ConfidenceLevel, params, returnVal any) error // Bind will override current bindings for the same contract, if one has been set and will return an error if the // contract is not known by the ChainReader, or if the Address is invalid Bind(ctx context.Context, bindings []BoundContract) error // QueryKey provides fetching chain agnostic events (Sequence) with general querying capability. QueryKey(ctx context.Context, contractName string, filter query.KeyFilter, limitAndSort query.LimitAndSort, sequenceDataType any) ([]Sequence, error) }
Deprecated: use ContractReader. New naming should clear up confusion around the usage of this interface which should strictly be contract reading related.
type ChainService ¶
type ChainService interface { Service // GetChainStatus returns the ChainStatus for this Relayer. GetChainStatus(ctx context.Context) (ChainStatus, error) // ListNodeStatuses returns the status of RPC nodes. ListNodeStatuses(ctx context.Context, pageSize int32, pageToken string) (stats []NodeStatus, nextPageToken string, total int, err error) // Transact submits a transaction to transfer tokens. // If balanceCheck is true, the balance will be checked before submitting. Transact(ctx context.Context, from, to string, amount *big.Int, balanceCheck bool) error }
ChainService is a sub-interface of [loop.Relayer] that encapsulates the explicit interactions with a chain
type ChainStatus ¶
type ChainWriter ¶
type ChainWriter interface { services.Service // SubmitTransaction packs and broadcasts a transaction to the underlying chain. // // - `args` should be any object which maps a set of method param into the contract and method specific method params. // - `transactionID` will be used by the underlying TXM as an idempotency key, and unique reference to track transaction attempts. SubmitTransaction(ctx context.Context, contractName, method string, args any, transactionID string, toAddress string, meta *TxMeta, value *big.Int) error // GetTransactionStatus returns the current status of a transaction in the underlying chain's TXM. GetTransactionStatus(ctx context.Context, transactionID string) (TransactionStatus, error) // GetFeeComponents retrieves the associated gas costs for executing a transaction. GetFeeComponents(ctx context.Context) (*ChainFeeComponents, error) }
type ConfigProvider ¶
type ConfigProvider interface { Service OffchainConfigDigester() ocrtypes.OffchainConfigDigester ContractConfigTracker() ocrtypes.ContractConfigTracker }
The bootstrap jobs only watch config.
type ContractReader ¶
type ContractReader = ChainReader
type ContractTypeProvider ¶
type Decoder ¶
type Decoder interface { Decode(ctx context.Context, raw []byte, into any, itemType string) error // GetMaxDecodingSize returns the max size in bytes if n elements are supplied for all top level dynamically sized elements. // If no elements are dynamically sized, the returned value will be the same for all n. // If there are multiple levels of dynamically sized elements, or itemType cannot be found, // ErrInvalidType will be returned. GetMaxDecodingSize(ctx context.Context, n int, itemType string) (int, error) }
type Encoder ¶
type Encoder interface { Encode(ctx context.Context, item any, itemType string) ([]byte, error) // GetMaxEncodingSize returns the max size in bytes if n elements are supplied for all top level dynamically sized elements. // If no elements are dynamically sized, the returned value will be the same for all n. // If there are multiple levels of dynamically sized elements, or itemType cannot be found, // ErrInvalidType will be returned. GetMaxEncodingSize(ctx context.Context, n int, itemType string) (int, error) }
type FunctionsEvents ¶
type FunctionsEvents interface { Service LatestEvents() ([]OracleRequest, []OracleResponse, error) }
An on-chain event source, which understands router proxy contracts.
type FunctionsProvider ¶
type FunctionsProvider interface { PluginProvider FunctionsEvents() FunctionsEvents }
type InternalError ¶
type InternalError string
func (InternalError) Error ¶
func (e InternalError) Error() string
func (InternalError) GRPCStatus ¶
func (e InternalError) GRPCStatus() *status.Status
func (InternalError) Is ¶
func (e InternalError) Is(target error) bool
type InvalidArgumentError ¶
type InvalidArgumentError string
func (InvalidArgumentError) Error ¶
func (e InvalidArgumentError) Error() string
func (InvalidArgumentError) GRPCStatus ¶
func (e InvalidArgumentError) GRPCStatus() *status.Status
func (InvalidArgumentError) Is ¶
func (e InvalidArgumentError) Is(target error) bool
type LLOProvider ¶
type LLOProvider interface { ConfigProvider ContractTransmitter() llo.Transmitter ChannelDefinitionCache() llo.ChannelDefinitionCache }
type MedianProvider ¶
type MedianProvider interface { PluginProvider ReportCodec() median.ReportCodec MedianContract() median.MedianContract OnchainConfigCodec() median.OnchainConfigCodec }
MedianProvider provides all components needed for a median OCR2 plugin.
type MercuryCredentials ¶
type MercuryPluginFactory ¶
type MercuryPluginFactory interface { Service ocr3types.MercuryPluginFactory }
type MercuryProvider ¶
type MercuryProvider interface { PluginProvider ReportCodecV1() v1.ReportCodec ReportCodecV2() v2.ReportCodec ReportCodecV3() v3.ReportCodec ReportCodecV4() v4.ReportCodec OnchainConfigCodec() mercury.OnchainConfigCodec MercuryServerFetcher() mercury.ServerFetcher MercuryChainReader() mercury.ChainReader }
MercuryProvider provides components needed for a mercury OCR2 plugin. Mercury requires config tracking but does not transmit on-chain.
type NodeStatus ¶
type NotFoundError ¶
type NotFoundError string
func (NotFoundError) Error ¶
func (e NotFoundError) Error() string
func (NotFoundError) GRPCStatus ¶
func (e NotFoundError) GRPCStatus() *status.Status
func (NotFoundError) Is ¶
func (e NotFoundError) Is(target error) bool
type OCR2PluginType ¶
type OCR2PluginType string
OCR2PluginType defines supported OCR2 plugin types.
const ( Median OCR2PluginType = "median" DKG OCR2PluginType = "dkg" OCR2VRF OCR2PluginType = "ocr2vrf" // TODO: sc-55296 to rename ocr2keeper to ocr2automation in code OCR2Keeper OCR2PluginType = "ocr2automation" Functions OCR2PluginType = "functions" Mercury OCR2PluginType = "mercury" LLO OCR2PluginType = "llo" GenericPlugin OCR2PluginType = "plugin" OCR3Capability OCR2PluginType = "ocr3-capability" CCIPCommit OCR2PluginType = "ccip-commit" CCIPExecution OCR2PluginType = "ccip-execution" )
type OCR3CapabilityProvider ¶
type OCR3CapabilityProvider interface { PluginProvider OCR3ContractTransmitter }
type OCR3ContractTransmitter ¶
type OCR3ContractTransmitter interface {
OCR3ContractTransmitter() ocr3types.ContractTransmitter[[]byte]
}
type OracleRequest ¶
type OracleRequest struct { RequestID [32]byte RequestingContract ocrtypes.Account RequestInitiator ocrtypes.Account //nolint:revive SubscriptionId uint64 SubscriptionOwner ocrtypes.Account Data []byte DataVersion uint16 Flags [32]byte CallbackGasLimit uint64 TxHash []byte CoordinatorContract ocrtypes.Account OnchainMetadata []byte }
type OracleResponse ¶
type OracleResponse struct {
RequestID [32]byte
}
type Plugin ¶
type Plugin = PluginProvider
Plugin is an alias for PluginProvider, for compatibility. Deprecated
type PluginArgs ¶
PluginArgs are the args required to create any OCR2 plugin components. It's possible that the plugin config might actually be different per relay type, so we pass the config directly through.
type PluginMercury ¶
type PluginMercury interface { NewMercuryV1Factory(ctx context.Context, provider MercuryProvider, dataSource v1.DataSource) (MercuryPluginFactory, error) NewMercuryV2Factory(ctx context.Context, provider MercuryProvider, dataSource v2.DataSource) (MercuryPluginFactory, error) NewMercuryV3Factory(ctx context.Context, provider MercuryProvider, dataSource v3.DataSource) (MercuryPluginFactory, error) NewMercuryV4Factory(ctx context.Context, provider MercuryProvider, dataSource v4.DataSource) (MercuryPluginFactory, error) }
type PluginProvider ¶
type PluginProvider interface { ConfigProvider ContractTransmitter() ocrtypes.ContractTransmitter ChainReader() ChainReader Codec() Codec }
PluginProvider provides common components for any OCR2 plugin. It watches config and is able to transmit.
type RelayArgs ¶
type RelayArgs struct { ExternalJobID uuid.UUID JobID int32 ContractID string New bool // Whether this is a first time job add. RelayConfig []byte // The specific configuration of a given relayer instance. Will vary by relayer type. ProviderType string MercuryCredentials *MercuryCredentials }
RelayArgs are the args required to create relayer. The are common to all relayer implementations.
type RelayID ¶
func NewRelayID ¶
func (*RelayID) UnmarshalString ¶
type Relayer
deprecated
type Relayer interface { Service // NewChainWriter returns a new ChainWriter. // The format of config depends on the implementation. NewChainWriter(ctx context.Context, config []byte) (ChainWriter, error) // NewContractReader returns a new ContractReader. // The format of contractReaderConfig depends on the implementation. NewContractReader(contractReaderConfig []byte) (ContractReader, error) NewConfigProvider(rargs RelayArgs) (ConfigProvider, error) NewMedianProvider(rargs RelayArgs, pargs PluginArgs) (MedianProvider, error) NewMercuryProvider(rargs RelayArgs, pargs PluginArgs) (MercuryProvider, error) NewFunctionsProvider(rargs RelayArgs, pargs PluginArgs) (FunctionsProvider, error) NewAutomationProvider(rargs RelayArgs, pargs PluginArgs) (AutomationProvider, error) NewLLOProvider(rargs RelayArgs, pargs PluginArgs) (LLOProvider, error) NewCCIPCommitProvider(rargs RelayArgs, pargs PluginArgs) (CCIPCommitProvider, error) NewCCIPExecProvider(rargs RelayArgs, pargs PluginArgs) (CCIPExecProvider, error) NewPluginProvider(rargs RelayArgs, pargs PluginArgs) (PluginProvider, error) NewOCR3CapabilityProvider(rargs RelayArgs, pargs PluginArgs) (OCR3CapabilityProvider, error) }
Relayer is the product-facing, and context-less sub-interface of [loop.Relayer].
Deprecated: use loop.Relayer, which includes context.Context.
type RemoteCodec ¶
type RemoteCodec interface { Codec TypeProvider }
type ReportingPluginFactory ¶
type ReportingPluginFactory interface { Service libocr.ReportingPluginFactory }
type TransactionStatus ¶
type TransactionStatus int
TransactionStatus are the status we expect every TXM to support and that can be returned by StatusForUUID.
const ( Unknown TransactionStatus = iota Pending Unconfirmed Finalized Failed Fatal )
type TxMeta ¶
type TxMeta struct { // Used for Keystone Workflows WorkflowExecutionID *string }
TxMeta contains metadata fields for a transaction.
type TypeProvider ¶
type UnimplementedError ¶
type UnimplementedError string
func (UnimplementedError) Error ¶
func (e UnimplementedError) Error() string
func (UnimplementedError) GRPCStatus ¶
func (e UnimplementedError) GRPCStatus() *status.Status
func (UnimplementedError) Is ¶
func (e UnimplementedError) Is(target error) bool