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
179 changes: 158 additions & 21 deletions pkg/capabilities/actions/vault/messages.pb.go

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

18 changes: 18 additions & 0 deletions pkg/capabilities/actions/vault/messages.proto
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
syntax = "proto3";

import "google/protobuf/any.proto";

option go_package = "github.com/smartcontractkit/chainlink-common/pkg/capabilities/actions/vault";

package vault;
Expand Down Expand Up @@ -136,6 +138,8 @@ message Observation {

message Observations {
repeated Observation observations = 1;
repeated bytes pending_queue_items = 2;
bytes sortNonce = 3;
}

message Outcome {
Expand Down Expand Up @@ -187,6 +191,19 @@ message StoredMetadata {
repeated SecretIdentifier secret_identifiers = 2;
}

// IMPORTANT: this record is persisted so any changes must be
// backwards compatible
message StoredPendingQueueIndex {
int64 length = 1;
}

// IMPORTANT: this record is persisted so any changes must be
// backwards compatible
message StoredPendingQueueItem {
google.protobuf.Any item = 1;
string id = 2;
}

message ReportingPluginConfig {
// Plugin-specific configuration
int32 BatchSize = 1;
Expand All @@ -196,6 +213,7 @@ message ReportingPluginConfig {
int32 MaxIdentifierOwnerLengthBytes = 5;
int32 MaxIdentifierNamespaceLengthBytes = 6;
optional string DKGInstanceID = 7;
bool EnableDeterministicPendingQueue = 8;

// OCR 3.1 ReportInfo configuration
int32 LimitsMaxQueryLength = 20;
Expand Down
Loading