-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
955f10c
commit 34ab33a
Showing
5 changed files
with
102 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": patch | ||
--- | ||
|
||
#internal depreciate keystone deployment library |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
package keystone | ||
|
||
import "github.com/smartcontractkit/chainlink/deployment/keystone/changeset" | ||
|
||
//TODO: delete this after the downstream migration is done | ||
|
||
// OracleConfig is the configuration for an oracle | ||
type OracleConfig = changeset.OracleConfig | ||
|
||
// OCR3OnchainConfig is the onchain configuration of an OCR2 contract | ||
type OCR2OracleConfig = changeset.OCR3OnchainConfig | ||
|
||
// NodeKeys is a set of public keys for a node | ||
type NodeKeys = changeset.NodeKeys | ||
|
||
// TopLevelConfigSource is the top level configuration source | ||
type TopLevelConfigSource = changeset.TopLevelConfigSource | ||
|
||
// GenerateOCR3Config generates an OCR3 config | ||
var GenerateOCR3Config = changeset.GenerateOCR3Config | ||
|
||
// FeedConsumer is a feed consumer contract type | ||
var FeedConsumer = changeset.FeedConsumer | ||
|
||
// KeystoneForwarder is a keystone forwarder contract type | ||
var KeystoneForwarder = changeset.KeystoneForwarder | ||
|
||
// GetContractSetsRequest is a request to get contract sets | ||
type GetContractSetsRequest = changeset.GetContractSetsRequest | ||
|
||
// GetContractSetsResponse is a response to get contract sets | ||
type GetContractSetsResponse = changeset.GetContractSetsResponse | ||
|
||
// GetContractSets gets contract sets | ||
var GetContractSets = changeset.GetContractSets | ||
|
||
// RegisterCapabilitiesRequest is a request to register capabilities | ||
type RegisterCapabilitiesRequest = changeset.RegisterCapabilitiesRequest | ||
|
||
// RegisterCapabilitiesResponse is a response to register capabilities | ||
type RegisterCapabilitiesResponse = changeset.RegisterCapabilitiesResponse | ||
|
||
// RegisterCapabilities registers capabilities | ||
var RegisterCapabilities = changeset.RegisterCapabilities | ||
|
||
// RegisterNOPSRequest is a request to register NOPS | ||
type RegisterNOPSRequest = changeset.RegisterNOPSRequest | ||
|
||
// RegisterNOPSResponse is a response to register NOPS | ||
type RegisterNOPSResponse = changeset.RegisterNOPSResponse | ||
|
||
// RegisterNOPS registers NOPS | ||
var RegisterNOPS = changeset.RegisterNOPS | ||
|
||
// RegisterNodesRequest is a request to register nodes with the capabilities registry | ||
type RegisterNodesRequest = changeset.RegisterNodesRequest | ||
|
||
// RegisterNodesResponse is a response to register nodes with the capabilities registry | ||
type RegisterNodesResponse = changeset.RegisterNodesResponse | ||
|
||
// RegisterNodes registers nodes with the capabilities registry | ||
var RegisterNodes = changeset.RegisterNodes | ||
|
||
// RegisteredCapability is a wrapper of a capability and its ID | ||
type RegisteredCapability = changeset.RegisteredCapability | ||
|
||
// FromCapabilitiesRegistryCapability converts a capabilities registry capability to a registered capability | ||
var FromCapabilitiesRegistryCapability = changeset.FromCapabilitiesRegistryCapability | ||
|
||
// RegisterDonsRequest is a request to register Dons with the capabilities registry | ||
type RegisterDonsRequest = changeset.RegisterDonsRequest | ||
|
||
// RegisterDonsResponse is a response to register Dons with the capabilities registry | ||
type RegisterDonsResponse = changeset.RegisterDonsResponse | ||
|
||
// RegisterDons registers Dons with the capabilities registry | ||
var RegisterDons = changeset.RegisterDons | ||
|
||
// DONToRegister is the minimal information needed to register a DON with the capabilities registry | ||
type DONToRegister = changeset.DONToRegister | ||
|
||
// ConfigureContractsRequest is a request to configure ALL the contracts | ||
type ConfigureContractsRequest = changeset.ConfigureContractsRequest | ||
|
||
// ConfigureContractsResponse is a response to configure ALL the contracts | ||
type ConfigureContractsResponse = changeset.ConfigureContractsResponse | ||
|
||
// DonCapabilities is a set of capabilities hosted by a set of node operators | ||
// in is in a convenient form to handle the CLO representation of the nop data | ||
type DonCapabilities = changeset.DonCapabilities | ||
|
||
type DeployRequest = changeset.DeployRequest | ||
type DeployResponse = changeset.DeployResponse | ||
|
||
type ContractSet = changeset.ContractSet |