feat: add missing caps (#4581)

This commit is contained in:
Matthias Seitz
2023-09-13 18:18:38 +02:00
committed by GitHub
parent a3952f1281
commit 9a9a6e0093

View File

@ -9,15 +9,18 @@ mod transition;
pub use self::{cancun::*, forkchoice::*, payload::*, transition::*}; pub use self::{cancun::*, forkchoice::*, payload::*, transition::*};
/// The list of supported Engine capabilities /// The list of all supported Engine capabilities available over the engine endpoint.
pub const CAPABILITIES: [&str; 9] = [ pub const CAPABILITIES: [&str; 12] = [
"engine_forkchoiceUpdatedV1", "engine_forkchoiceUpdatedV1",
"engine_forkchoiceUpdatedV2", "engine_forkchoiceUpdatedV2",
"engine_forkchoiceUpdatedV3",
"engine_exchangeTransitionConfigurationV1", "engine_exchangeTransitionConfigurationV1",
"engine_getPayloadV1", "engine_getPayloadV1",
"engine_getPayloadV2", "engine_getPayloadV2",
"engine_getPayloadV3",
"engine_newPayloadV1", "engine_newPayloadV1",
"engine_newPayloadV2", "engine_newPayloadV2",
"engine_newPayloadV3",
"engine_getPayloadBodiesByHashV1", "engine_getPayloadBodiesByHashV1",
"engine_getPayloadBodiesByRangeV1", "engine_getPayloadBodiesByRangeV1",
]; ];