Crate reth_node_builder::engine

source ·
Expand description

Traits, validation methods, and helper types used to abstract over engine types.

Modules§

  • Contains error types used in the traits defined in this crate. Defines a payload validation error type
  • Contains types used in implementations of the PayloadAttributes trait.
  • Contains traits to abstract over payload attributes types and default implementations of the PayloadAttributes trait for ethereum mainnet and optimism types.

Enums§

Traits§

  • Represents a built payload type that contains a built SealedBlock and can be converted into engine API execution payloads.
  • The types that are used by the engine API.
  • The execution payload attribute type the CL node emits via the engine API. This trait should be implemented by types that could be used to spawn a payload job.
  • This can be implemented by types that describe a currently running payload job.

Functions§

  • Validate the presence of the parentBeaconBlockRoot field according to the given timestamp. This method is meant to be used with either a payloadAttributes field or a full payload, with the engine_forkchoiceUpdated and engine_newPayload methods respectively.
  • Validates the timestamp depending on the version called:
  • Validates the presence or exclusion of fork-specific fields based on the ethereum execution payload, or payload attributes, and the message version.
  • Validates the presence of the withdrawals field according to the payload timestamp. After Shanghai, withdrawals field must be Some. Before Shanghai, withdrawals field must be None;