From d17281a12c3be51a5b25cbb7e280cbfcb07491a4 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Wed, 13 Sep 2023 17:16:53 +0200 Subject: [PATCH] feat: add missing caps --- crates/rpc/rpc-types/src/eth/engine/mod.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/crates/rpc/rpc-types/src/eth/engine/mod.rs b/crates/rpc/rpc-types/src/eth/engine/mod.rs index 54cf8ccf0c20..ad76be1e309d 100644 --- a/crates/rpc/rpc-types/src/eth/engine/mod.rs +++ b/crates/rpc/rpc-types/src/eth/engine/mod.rs @@ -9,15 +9,18 @@ mod transition; pub use self::{cancun::*, forkchoice::*, payload::*, transition::*}; -/// The list of supported Engine capabilities -pub const CAPABILITIES: [&str; 9] = [ +/// The list of all supported Engine capabilities available over the engine endpoint. +pub const CAPABILITIES: [&str; 12] = [ "engine_forkchoiceUpdatedV1", "engine_forkchoiceUpdatedV2", + "engine_forkchoiceUpdatedV3", "engine_exchangeTransitionConfigurationV1", "engine_getPayloadV1", "engine_getPayloadV2", + "engine_getPayloadV3", "engine_newPayloadV1", "engine_newPayloadV2", + "engine_newPayloadV3", "engine_getPayloadBodiesByHashV1", "engine_getPayloadBodiesByRangeV1", ];