Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions pkg/types/core/standard_capabilities_dependencies.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
package core

import "github.com/smartcontractkit/chainlink-common/pkg/services/orgresolver"

// StandardCapabilitiesDependencies contains all the dependencies injected for capability initialization.
// We use a struct to evolve the interface without requiring updates to all implementors.
// i.e. Initialise(ctx context.Context, dependencies core.StandardCapabilitiesDependencies) error
type StandardCapabilitiesDependencies struct {
Config string
TelemetryService TelemetryService
Expand All @@ -13,4 +16,5 @@ type StandardCapabilitiesDependencies struct {
OracleFactory OracleFactory
GatewayConnector GatewayConnector
P2PKeystore Keystore
OrgResolver orgresolver.OrgResolver
}
Loading