Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 10 additions & 0 deletions .changeset/add-stellar-canton-chain-types.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
"@chainlink/job-distributor": minor
"@chainlink/orchestrator": minor
---

Add `CHAIN_TYPE_STELLAR` (8) and `CHAIN_TYPE_CANTON` (9) to the `ChainType` enum in
`feedsmanager.proto` and `node.proto`. These chain families are needed for standalone
committee verifier nodes to publish their onchain signing keys to JD via `UpdateNode`,
unblocking deployment tooling that reads signing addresses back via
`ListNodeChainConfigs`.
12 changes: 10 additions & 2 deletions job-distributor/v1/node/node.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions job-distributor/v1/node/node.proto
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ enum ChainType {
CHAIN_TYPE_TRON = 5;
CHAIN_TYPE_TON = 6;
CHAIN_TYPE_SUI = 7;
CHAIN_TYPE_STELLAR = 8;
CHAIN_TYPE_CANTON = 9;
}

message Chain {
Expand Down
12 changes: 10 additions & 2 deletions orchestrator/feedsmanager/feedsmanager.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions orchestrator/feedsmanager/feedsmanager.proto
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ enum ChainType {
CHAIN_TYPE_TRON = 5;
CHAIN_TYPE_TON = 6;
CHAIN_TYPE_SUI = 7;
CHAIN_TYPE_STELLAR = 8;
CHAIN_TYPE_CANTON = 9;
}

message Chain {
Expand Down
Loading