-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: move payload builder types to standalone mod (#13593)
- Loading branch information
Showing
3 changed files
with
100 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,5 @@ pub use evm::{ | |
|
||
pub mod node; | ||
pub use node::EthereumNode; | ||
|
||
pub mod payload; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
//! Payload component configuration for the Ethereum node. | ||
use reth_basic_payload_builder::{BasicPayloadJobGenerator, BasicPayloadJobGeneratorConfig}; | ||
use reth_chainspec::ChainSpec; | ||
use reth_ethereum_engine_primitives::{ | ||
EthBuiltPayload, EthPayloadAttributes, EthPayloadBuilderAttributes, | ||
}; | ||
use reth_ethereum_payload_builder::EthereumBuilderConfig; | ||
use reth_evm::ConfigureEvm; | ||
use reth_evm_ethereum::EthEvmConfig; | ||
use reth_node_api::{FullNodeTypes, HeaderTy, NodeTypesWithEngine, TxTy}; | ||
use reth_node_builder::{ | ||
components::PayloadServiceBuilder, BuilderContext, PayloadBuilderConfig, PayloadTypes, | ||
}; | ||
use reth_payload_builder::{PayloadBuilderHandle, PayloadBuilderService}; | ||
use reth_primitives::EthPrimitives; | ||
use reth_provider::CanonStateSubscriptions; | ||
use reth_transaction_pool::{PoolTransaction, TransactionPool}; | ||
|
||
/// A basic ethereum payload service. | ||
#[derive(Clone, Default, Debug)] | ||
#[non_exhaustive] | ||
pub struct EthereumPayloadBuilder; | ||
|
||
impl EthereumPayloadBuilder { | ||
/// A helper method initializing [`PayloadBuilderService`] with the given EVM config. | ||
pub fn spawn<Types, Node, Evm, Pool>( | ||
self, | ||
evm_config: Evm, | ||
ctx: &BuilderContext<Node>, | ||
pool: Pool, | ||
) -> eyre::Result<PayloadBuilderHandle<Types::Engine>> | ||
where | ||
Types: NodeTypesWithEngine<ChainSpec = ChainSpec, Primitives = EthPrimitives>, | ||
Node: FullNodeTypes<Types = Types>, | ||
Evm: ConfigureEvm<Header = HeaderTy<Types>, Transaction = TxTy<Node::Types>>, | ||
Pool: TransactionPool<Transaction: PoolTransaction<Consensus = TxTy<Node::Types>>> | ||
+ Unpin | ||
+ 'static, | ||
Types::Engine: PayloadTypes< | ||
BuiltPayload = EthBuiltPayload, | ||
PayloadAttributes = EthPayloadAttributes, | ||
PayloadBuilderAttributes = EthPayloadBuilderAttributes, | ||
>, | ||
{ | ||
let conf = ctx.payload_builder_config(); | ||
let payload_builder = reth_ethereum_payload_builder::EthereumPayloadBuilder::new( | ||
evm_config, | ||
EthereumBuilderConfig::new(conf.extra_data_bytes()).with_gas_limit(conf.gas_limit()), | ||
); | ||
|
||
let payload_job_config = BasicPayloadJobGeneratorConfig::default() | ||
.interval(conf.interval()) | ||
.deadline(conf.deadline()) | ||
.max_payload_tasks(conf.max_payload_tasks()); | ||
|
||
let payload_generator = BasicPayloadJobGenerator::with_builder( | ||
ctx.provider().clone(), | ||
pool, | ||
ctx.task_executor().clone(), | ||
payload_job_config, | ||
payload_builder, | ||
); | ||
let (payload_service, payload_builder) = | ||
PayloadBuilderService::new(payload_generator, ctx.provider().canonical_state_stream()); | ||
|
||
ctx.task_executor().spawn_critical("payload builder service", Box::pin(payload_service)); | ||
|
||
Ok(payload_builder) | ||
} | ||
} | ||
|
||
impl<Types, Node, Pool> PayloadServiceBuilder<Node, Pool> for EthereumPayloadBuilder | ||
where | ||
Types: NodeTypesWithEngine<ChainSpec = ChainSpec, Primitives = EthPrimitives>, | ||
Node: FullNodeTypes<Types = Types>, | ||
Pool: TransactionPool<Transaction: PoolTransaction<Consensus = TxTy<Node::Types>>> | ||
+ Unpin | ||
+ 'static, | ||
Types::Engine: PayloadTypes< | ||
BuiltPayload = EthBuiltPayload, | ||
PayloadAttributes = EthPayloadAttributes, | ||
PayloadBuilderAttributes = EthPayloadBuilderAttributes, | ||
>, | ||
{ | ||
async fn spawn_payload_service( | ||
self, | ||
ctx: &BuilderContext<Node>, | ||
pool: Pool, | ||
) -> eyre::Result<PayloadBuilderHandle<Types::Engine>> { | ||
self.spawn(EthEvmConfig::new(ctx.chain_spec()), ctx, pool) | ||
} | ||
} |