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
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package types

//go:generate protoc --go_out=. --go_opt=paths=source_relative -I. ocr3_chain_capabilities_config_types.proto

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

Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
syntax = "proto3";

option go_package = "capabilities/v2/chain-capabilities/consensus/ocr3/types";

package chain_capabilities_ocr3_config_types;

message ReportingPluginConfig {
// These fields are shadowing the `ReportingPluginLimits` fields.
// See: https://github.com/smartcontractkit/libocr/blob/master/offchainreporting2plus/ocr3types/plugin.go#L296
uint32 maxQueryLengthBytes = 1;
uint32 maxObservationLengthBytes = 2;
uint32 maxOutcomeLengthBytes = 3;
uint32 maxReportLengthBytes = 4;
uint32 maxReportCount = 5;

uint32 maxBatchSize = 6;
}
Loading