From a696c7a55e0f2da8edbce9fc1e88ad00475d00bc Mon Sep 17 00:00:00 2001 From: Sam Davies Date: Mon, 2 Dec 2024 14:03:56 -0500 Subject: [PATCH] Add ReportFormatEVMAbiEncodeUnpacked --- pkg/types/llo/types.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/types/llo/types.go b/pkg/types/llo/types.go index 3951afa4a..2b53b91eb 100644 --- a/pkg/types/llo/types.go +++ b/pkg/types/llo/types.go @@ -45,6 +45,9 @@ const ( // ReportFormatRetirement is a special "capstone" report format to indicate // a retired OCR instance, and handover crucial information to a new one ReportFormatRetirement ReportFormat = 3 + // ReportFormatEVMAbiEncodeUnpacked supports encoding reports with a fixed + // schema followed by an arbitrary ABI-encoded payload + ReportFormatEVMAbiEncodeUnpacked = 4 _ ReportFormat = math.MaxUint32 // reserved )