1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
//! Optimism payload builder implementation.

use crate::{
    error::OptimismPayloadBuilderError,
    payload::{OptimismBuiltPayload, OptimismPayloadBuilderAttributes},
};
use alloy_primitives::U256;
use reth_basic_payload_builder::*;
use reth_chain_state::ExecutedBlock;
use reth_chainspec::{ChainSpec, EthereumHardforks, OptimismHardfork};
use reth_evm::{
    system_calls::pre_block_beacon_root_contract_call, ConfigureEvm, NextBlockEnvAttributes,
};
use reth_execution_types::ExecutionOutcome;
use reth_payload_builder::error::PayloadBuilderError;
use reth_payload_primitives::PayloadBuilderAttributes;
use reth_primitives::{
    constants::BEACON_NONCE,
    eip4844::calculate_excess_blob_gas,
    proofs,
    revm_primitives::{BlockEnv, CfgEnvWithHandlerCfg},
    transaction::WithEncoded,
    Address, Block, Bytes, Header, IntoRecoveredTransaction, Receipt, Receipts, SealedBlock,
    TransactionSigned, TransactionSignedEcRecovered, TxType, B256, EMPTY_OMMER_ROOT_HASH,
};
use reth_provider::{ProviderError, StateProviderFactory};
use reth_revm::database::StateProviderDatabase;
use reth_transaction_pool::{
    noop::NoopTransactionPool, BestTransactionsAttributes, TransactionPool,
};
use reth_trie::{updates::TrieUpdates, HashedPostState};
use revm::{
    db::states::bundle_state::BundleRetention,
    primitives::{EVMError, EnvWithHandlerCfg, ExecutionResult, InvalidTransaction},
    State,
};
use std::sync::Arc;
use tracing::{debug, trace, warn};
/// Optimism's payload builder
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct OptimismPayloadBuilder<EvmConfig> {
    /// The rollup's compute pending block configuration option.
    // TODO(clabby): Implement this feature.
    compute_pending_block: bool,
    /// The type responsible for creating the evm.
    evm_config: EvmConfig,
}

impl<EvmConfig> OptimismPayloadBuilder<EvmConfig>
where
    EvmConfig: ConfigureEvm<Header = Header>,
{
    /// `OptimismPayloadBuilder` constructor.
    pub const fn new(evm_config: EvmConfig) -> Self {
        Self { compute_pending_block: true, evm_config }
    }

    /// Sets the rollup's compute pending block configuration option.
    pub const fn set_compute_pending_block(mut self, compute_pending_block: bool) -> Self {
        self.compute_pending_block = compute_pending_block;
        self
    }

    /// Enables the rollup's compute pending block configuration option.
    pub const fn compute_pending_block(self) -> Self {
        self.set_compute_pending_block(true)
    }

    /// Returns the rollup's compute pending block configuration option.
    pub const fn is_compute_pending_block(&self) -> bool {
        self.compute_pending_block
    }

    /// Constructs an Ethereum transaction payload from the transactions sent through the
    /// Payload attributes by the sequencer. If the `no_tx_pool` argument is passed in
    /// the payload attributes, the transaction pool will be ignored and the only transactions
    /// included in the payload will be those sent through the attributes.
    ///
    /// Given build arguments including an Ethereum client, transaction pool,
    /// and configuration, this function creates a transaction payload. Returns
    /// a result indicating success with the payload or an error in case of failure.
    #[inline]
    fn build_payload<Pool, Client>(
        &self,
        evm_config: EvmConfig,
        args: BuildArguments<Pool, Client, OptimismPayloadBuilderAttributes, OptimismBuiltPayload>,
        _compute_pending_block: bool,
    ) -> Result<BuildOutcome<OptimismBuiltPayload>, PayloadBuilderError>
    where
        EvmConfig: ConfigureEvm,
        Client: StateProviderFactory,
        Pool: TransactionPool,
    {
        let BuildArguments { client, pool, mut cached_reads, config, cancel, best_payload } = args;

        let state_provider = client.state_by_block_hash(config.parent_block.hash())?;
        let state = StateProviderDatabase::new(state_provider);
        let mut db = State::builder()
            .with_database_ref(cached_reads.as_db(state))
            .with_bundle_update()
            .build();

        let (initialized_cfg, initialized_block_env) = self.cfg_and_block_env(&config);

        self.init_pre_block_state(
            &config,
            evm_config,
            &initialized_cfg,
            &initialized_block_env,
            &mut db,
        )?;

        let op_block_attributes = match self.construct_block_attributes(
            pool,
            &config,
            initialized_cfg,
            initialized_block_env,
            &mut db,
            &cancel,
        ) {
            Ok(outcome) => Ok(outcome),
            Err(PayloadBuilderError::BuildOutcomeCancelled) => return Ok(BuildOutcome::Cancelled),
            Err(err) => Err(err),
        }?;

        // check if we have a better block
        if !is_better_payload(best_payload.as_ref(), op_block_attributes.total_fees) {
            // can skip building the block
            return Ok(BuildOutcome::Aborted { fees: op_block_attributes.total_fees, cached_reads });
        }

        let (withdrawals_outcome, execution_outcome) =
            self.construct_outcome(&op_block_attributes, &mut db)?;

        // calculate the state root
        let parent_block = config.parent_block;
        let hashed_state = HashedPostState::from_bundle_state(&execution_outcome.state().state);
        let (state_root, trie_output) = {
            let state_provider = db.database.0.inner.borrow_mut();
            state_provider.db.state_root_with_updates(hashed_state.clone()).inspect_err(|err| {
                warn!(target: "payload_builder",
                    parent_hash=%parent_block.hash(),
                    %err,
                    "failed to calculate state root for empty payload"
                );
            })?
        };

        let payload = self.construct_built_payload(
            op_block_attributes,
            execution_outcome,
            state_root,
            withdrawals_outcome,
            hashed_state,
            trie_output,
        );

        Ok(BuildOutcome::Better { payload, cached_reads })
    }

    /// Initializes the pre-block state for payload building.
    ///
    /// # Returns
    ///
    /// * `Ok(())` if the pre-block state is successfully initialized.
    /// * `Err(PayloadBuilderError::Internal(_))` if applying the beacon root contract call fails.
    /// * `Err(PayloadBuilderError::other(OptimismPayloadBuilderError::ForceCreate2DeployerFail))`
    ///   if ensuring the create2 deployer fails.
    #[inline]
    pub fn init_pre_block_state<DB>(
        &self,
        payload_config: &PayloadConfig<OptimismPayloadBuilderAttributes>,
        evm_config: EvmConfig,
        initialized_cfg: &CfgEnvWithHandlerCfg,
        initialized_block_env: &BlockEnv,
        db: &mut revm::State<DB>,
    ) -> Result<(), PayloadBuilderError>
    where
        DB: revm::Database<Error = ProviderError>,
        EvmConfig: ConfigureEvm,
    {
        let PayloadConfig { parent_block, attributes, chain_spec, .. } = payload_config;

        debug!(target: "payload_builder", id=%attributes.payload_attributes.payload_id(), parent_hash = ?parent_block.hash(), parent_number = parent_block.number, "building new payload");

        pre_block_beacon_root_contract_call(
            db,
            &evm_config,
            chain_spec,
            initialized_cfg,
            initialized_block_env,
            attributes.payload_attributes.parent_beacon_block_root,
        )
        .map_err(|err| {
            warn!(target: "payload_builder",
                parent_hash=%parent_block.hash(),
                %err,
                "failed to apply beacon root contract call for empty payload"
            );
            PayloadBuilderError::Internal(err.into())
        })?;

        // Ensure that the create2deployer is force-deployed at the canyon transition. Optimism
        // blocks will always have at least a single transaction in them (the L1 info transaction),
        // so we can safely assume that this will always be triggered upon the transition and that
        // the above check for empty blocks will never be hit on OP chains.
        reth_evm_optimism::ensure_create2_deployer(
            chain_spec.clone(),
            attributes.payload_attributes.timestamp,
            db,
        )
        .map_err(|err| {
            warn!(target: "payload_builder", %err, "missing create2 deployer, skipping block.");
            PayloadBuilderError::other(OptimismPayloadBuilderError::ForceCreate2DeployerFail)
        })
    }

    /// Constructs new block attributes with a populated list of transactions
    /// This method uses the provided payload attributes and transaction pool to populate the
    /// block attributes.
    ///
    /// # Returns
    ///
    /// * `Ok(OptimismBlockAttributes<EvmConfig>)` with populated block attributes on success
    /// * `Err(PayloadBuilderError::BuildOutcomeCancelled)` if the operation was cancelled
    /// * `Err(PayloadBuilderError::BlobTransactionRejected)` if a blob transaction is encountered
    /// * `Err(PayloadBuilderError::TransactionEcRecoverFailed)` if EC recovery fails for a
    ///   transaction
    /// * `Err(PayloadBuilderError::EvmExecutionError(_))` if an EVM execution error occurs
    #[inline]
    pub fn construct_block_attributes<Pool, DB>(
        &self,
        pool: Pool,
        payload_config: &PayloadConfig<OptimismPayloadBuilderAttributes>,
        initialized_cfg: CfgEnvWithHandlerCfg,
        initialized_block_env: BlockEnv,
        db: &mut revm::State<DB>,
        cancel: &Cancelled,
    ) -> Result<OptimismBlockAttributes<EvmConfig>, PayloadBuilderError>
    where
        Pool: TransactionPool,
        DB: revm::Database<Error = ProviderError>,
        EvmConfig: ConfigureEvm,
    {
        let mut op_block_attributes = OptimismBlockAttributes::new(
            payload_config,
            initialized_cfg,
            initialized_block_env,
            self.evm_config.clone(),
        );

        // add sequencer transactions to block
        op_block_attributes.add_sequencer_transactions(
            &payload_config.attributes.transactions,
            db,
            cancel,
        )?;

        // add pooled transactions to block
        op_block_attributes.add_pooled_transactions(&pool, db, cancel)?;

        Ok(op_block_attributes)
    }

    /// Constructs a built payload from the block attributes and execution outcomes.
    /// This method assembles the final `OptimismBuiltPayload` by combining the block attributes,
    /// execution outcomes, state roots, and other necessary components. It ensures that all
    /// parts of the payload are correctly integrated and sealed for submission.
    ///
    /// # Returns
    ///
    /// An `OptimismBuiltPayload` representing the fully constructed block payload.
    #[inline]
    pub fn construct_built_payload(
        &self,
        op_block_attributes: OptimismBlockAttributes<EvmConfig>,
        execution_outcome: ExecutionOutcome,
        state_root: B256,
        withdrawals_outcome: WithdrawalsOutcome,
        hashed_state: HashedPostState,
        trie_output: TrieUpdates,
    ) -> OptimismBuiltPayload
    where
        EvmConfig: ConfigureEvm,
    {
        let chain_spec = op_block_attributes.chain_spec;
        let block_number = op_block_attributes.initialized_block_env.number.to::<u64>();
        let timestamp = op_block_attributes.payload_attributes.timestamp();

        let receipts_root = execution_outcome
            .optimism_receipts_root_slow(block_number, chain_spec.as_ref(), timestamp)
            .expect("Number is in range");

        let logs_bloom =
            execution_outcome.block_logs_bloom(block_number).expect("Number is in range");

        // create the block header
        let transactions_root =
            proofs::calculate_transaction_root(&op_block_attributes.executed_txs);

        let mut excess_blob_gas = None;
        let mut blob_gas_used = None;

        // only determine cancun fields when active
        let parent_block = op_block_attributes.parent_block;
        if chain_spec.is_cancun_active_at_timestamp(timestamp) {
            excess_blob_gas = if chain_spec.is_cancun_active_at_timestamp(parent_block.timestamp) {
                let parent_excess_blob_gas = parent_block.excess_blob_gas.unwrap_or_default();
                let parent_blob_gas_used = parent_block.blob_gas_used.unwrap_or_default();
                Some(calculate_excess_blob_gas(parent_excess_blob_gas, parent_blob_gas_used))
            } else {
                // for the first post-fork block, both parent.blob_gas_used and
                // parent.excess_blob_gas are evaluated as 0
                Some(calculate_excess_blob_gas(0, 0))
            };

            blob_gas_used = Some(0);
        }

        let header = Header {
            parent_hash: parent_block.hash(),
            ommers_hash: EMPTY_OMMER_ROOT_HASH,
            beneficiary: op_block_attributes.initialized_block_env.coinbase,
            state_root,
            transactions_root,
            receipts_root,
            withdrawals_root: withdrawals_outcome.withdrawals_root,
            logs_bloom,
            timestamp,
            mix_hash: op_block_attributes.payload_attributes.prev_randao(),
            nonce: BEACON_NONCE,
            base_fee_per_gas: Some(op_block_attributes.base_fee),
            number: parent_block.number + 1,
            gas_limit: op_block_attributes.block_gas_limit,
            difficulty: U256::ZERO,
            gas_used: op_block_attributes.cumulative_gas_used,
            extra_data: op_block_attributes.extra_data,
            parent_beacon_block_root: op_block_attributes
                .payload_attributes
                .parent_beacon_block_root(),
            blob_gas_used,
            excess_blob_gas,
            requests_root: None,
        };

        let block = Block {
            header,
            body: op_block_attributes.executed_txs,
            ommers: vec![],
            withdrawals: withdrawals_outcome.withdrawals,
            requests: None,
        };

        let sealed_block = block.seal_slow();
        debug!(target: "payload_builder", ?sealed_block, "sealed built block");

        // create the executed block data
        let executed = ExecutedBlock {
            block: Arc::new(sealed_block.clone()),
            senders: Arc::new(op_block_attributes.executed_senders),
            execution_output: Arc::new(execution_outcome),
            hashed_state: Arc::new(hashed_state),
            trie: Arc::new(trie_output),
        };

        OptimismBuiltPayload::new(
            op_block_attributes.payload_attributes.payload_id(),
            sealed_block,
            op_block_attributes.total_fees,
            chain_spec,
            op_block_attributes.payload_attributes,
            Some(executed),
        )
    }

    /// Constructs the execution and withdrawal outcomes resulting from transactions in the block.
    ///
    /// # Returns
    ///
    /// * `Ok((WithdrawalsOutcome, ExecutionOutcome))` containing the outcomes of withdrawals and
    ///   transaction executions.
    /// * `Err(ProviderError)` if processing withdrawals fails or state merging encounters an error.
    #[inline]
    pub fn construct_outcome<DB>(
        &self,
        op_block_attributes: &OptimismBlockAttributes<EvmConfig>,
        db: &mut revm::State<DB>,
    ) -> Result<(WithdrawalsOutcome, ExecutionOutcome), ProviderError>
    where
        EvmConfig: ConfigureEvm,
        DB: revm::Database<Error = ProviderError>,
    {
        let timestamp = op_block_attributes.payload_attributes.timestamp();

        let withdrawals_outcome = commit_withdrawals(
            db,
            &op_block_attributes.chain_spec,
            timestamp,
            op_block_attributes.payload_attributes.withdrawals().to_owned(),
        )?;

        // merge all transitions into bundle state, this would apply the withdrawal balance changes
        // and 4788 contract call
        db.merge_transitions(BundleRetention::Reverts);

        let block_number = op_block_attributes.initialized_block_env.number.to::<u64>();
        let receipts = Receipts { receipt_vec: vec![op_block_attributes.receipts.clone()] };
        let execution_outcome =
            ExecutionOutcome::new(db.take_bundle(), receipts, block_number, Vec::new());

        Ok((withdrawals_outcome, execution_outcome))
    }

    /// Returns the configured [`CfgEnvWithHandlerCfg`] and [`BlockEnv`] for the targeted payload
    /// (that has the `parent` as its parent).
    fn cfg_and_block_env(
        &self,
        config: &PayloadConfig<OptimismPayloadBuilderAttributes>,
    ) -> (CfgEnvWithHandlerCfg, BlockEnv) {
        let next_attributes = NextBlockEnvAttributes {
            timestamp: config.attributes.timestamp(),
            suggested_fee_recipient: config.attributes.suggested_fee_recipient(),
            prev_randao: config.attributes.prev_randao(),
        };
        self.evm_config.next_cfg_and_block_env(&config.parent_block, next_attributes)
    }
}

/// Implementation of the [`PayloadBuilder`] trait for [`OptimismPayloadBuilder`].
impl<Pool, Client, EvmConfig> PayloadBuilder<Pool, Client> for OptimismPayloadBuilder<EvmConfig>
where
    Client: StateProviderFactory,
    Pool: TransactionPool,
    EvmConfig: ConfigureEvm<Header = Header>,
{
    type Attributes = OptimismPayloadBuilderAttributes;
    type BuiltPayload = OptimismBuiltPayload;

    fn try_build(
        &self,
        args: BuildArguments<Pool, Client, OptimismPayloadBuilderAttributes, OptimismBuiltPayload>,
    ) -> Result<BuildOutcome<OptimismBuiltPayload>, PayloadBuilderError> {
        self.build_payload(self.evm_config.clone(), args, self.compute_pending_block)
    }

    fn on_missing_payload(
        &self,
        _args: BuildArguments<Pool, Client, OptimismPayloadBuilderAttributes, OptimismBuiltPayload>,
    ) -> MissingPayloadBehaviour<Self::BuiltPayload> {
        // we want to await the job that's already in progress because that should be returned as
        // is, there's no benefit in racing another job
        MissingPayloadBehaviour::AwaitInProgress
    }

    // NOTE: this should only be used for testing purposes because this doesn't have access to L1
    // system txs, hence on_missing_payload we return [MissingPayloadBehaviour::AwaitInProgress].
    fn build_empty_payload(
        &self,
        client: &Client,
        config: PayloadConfig<Self::Attributes>,
    ) -> Result<OptimismBuiltPayload, PayloadBuilderError> {
        let args = BuildArguments {
            client,
            config,
            // we use defaults here because for the empty payload we don't need to execute anything
            pool: NoopTransactionPool::default(),
            cached_reads: Default::default(),
            cancel: Default::default(),
            best_payload: None,
        };

        self.build_payload(self.evm_config.clone(), args, false)?
            .into_payload()
            .ok_or_else(|| PayloadBuilderError::MissingPayload)
    }
}

/// Represents the attributes and state required to build an Optimism block
///
/// This struct holds all necessary data for constructing a block on Optimism
/// including executed transactions, receipts, gas usage, and EVM-specific
/// configuration parameters
#[derive(Debug)]
pub struct OptimismBlockAttributes<EvmConfig: ConfigureEvm> {
    /// Receipts  to each transaction in the block
    pub receipts: Vec<Option<Receipt>>,
    /// Signed transactions executed in the block
    pub executed_txs: Vec<TransactionSigned>,
    /// Addresses of the senders of the executed transactions
    pub executed_senders: Vec<Address>,
    /// Indicates if the Regolith hardfork is active at the block's timestamp
    pub is_regolith: bool,
    /// Gas limit for the block
    pub block_gas_limit: u64,
    /// Base fee per execution gas
    pub base_fee: u64,
    /// Total fees collected from all transactions
    pub total_fees: U256,
    /// Cumulative gas used by all transactions
    pub cumulative_gas_used: u64,
    /// Configuration parameters for the EVM environment
    pub evm_config: EvmConfig,
    /// Initialized block environment containing block-specific information
    pub initialized_block_env: BlockEnv,
    /// Initialized configuration environment with handler settings
    pub initialized_cfg: CfgEnvWithHandlerCfg,
    /// Shared reference to the chain specification
    pub chain_spec: Arc<ChainSpec>,
    /// Payload attributes sent from op-node for block construction
    pub payload_attributes: OptimismPayloadBuilderAttributes,
    /// Reference to the parent block
    pub parent_block: Arc<SealedBlock>,
    /// Extra data to include in the block header
    pub extra_data: Bytes,
}

impl<EvmConfig> OptimismBlockAttributes<EvmConfig>
where
    EvmConfig: ConfigureEvm<Header = Header>,
{
    /// Creates a new `OptimismBlockAttributes` instance.
    /// Initializes the block attributes based on the provided payload configuration
    /// and EVM configuration.
    pub fn new(
        payload_config: &PayloadConfig<OptimismPayloadBuilderAttributes>,
        initialized_cfg: CfgEnvWithHandlerCfg,
        initialized_block_env: BlockEnv,
        evm_config: EvmConfig,
    ) -> Self {
        let attributes = &payload_config.attributes;

        let is_regolith = payload_config.chain_spec.is_fork_active_at_timestamp(
            OptimismHardfork::Regolith,
            attributes.payload_attributes.timestamp,
        );

        let block_gas_limit: u64 = attributes.gas_limit.unwrap_or_else(|| {
            initialized_block_env
                .gas_limit
                .try_into()
                .unwrap_or(payload_config.chain_spec.max_gas_limit)
        });

        let base_fee = initialized_block_env.basefee.to::<u64>();

        Self {
            executed_senders: Vec::with_capacity(attributes.transactions.len()),
            executed_txs: Vec::with_capacity(attributes.transactions.len()),
            receipts: Vec::with_capacity(attributes.transactions.len()),
            is_regolith,
            block_gas_limit,
            base_fee,
            total_fees: U256::ZERO,
            cumulative_gas_used: 0,
            evm_config,
            initialized_block_env,
            initialized_cfg,
            chain_spec: payload_config.chain_spec.clone(),
            payload_attributes: attributes.clone(),
            parent_block: payload_config.parent_block.clone(),
            extra_data: payload_config.extra_data.clone(),
        }
    }

    /// Adds sequencer transactions to the block
    ///
    /// # Returns
    ///
    /// * `Ok(())` on successful addition of all valid sequencer transactions
    /// * `Err(PayloadBuilderError::BuildOutcomeCancelled)` if the operation was cancelled
    /// * `Err(PayloadBuilderError::BlobTransactionRejected)` if a blob transaction is encountered
    /// * `Err(PayloadBuilderError::TransactionEcRecoverFailed)` if EC recovery fails for a
    ///   transaction
    /// * `Err(PayloadBuilderError::EvmExecutionError(EVMError::Transaction(_)))` if an EVM
    ///   execution error occurs
    #[inline]
    pub fn add_sequencer_transactions<DB>(
        &mut self,
        transactions: &[WithEncoded<TransactionSigned>],
        db: &mut revm::State<DB>,
        cancel: &Cancelled,
    ) -> Result<(), PayloadBuilderError>
    where
        DB: revm::Database<Error = ProviderError>,
    {
        // Add sequencer transactions to the block
        for sequencer_tx in transactions {
            // Check if the job was cancelled, if so we can exit early.
            if cancel.is_cancelled() {
                return Err(PayloadBuilderError::BuildOutcomeCancelled);
            }

            // Payload attributes transactions should never contain blob transactions.
            if sequencer_tx.value().is_eip4844() {
                return Err(PayloadBuilderError::other(
                    OptimismPayloadBuilderError::BlobTransactionRejected,
                ));
            }

            // Convert the transaction to a [TransactionSignedEcRecovered]. This is
            // purely for the purposes of utilizing the `evm_config.tx_env`` function.
            // Deposit transactions do not have signatures, so if the tx is a deposit, this
            // will just pull in its `from` address.
            let sequencer_tx =
                sequencer_tx.value().clone().try_into_ecrecovered().map_err(|_| {
                    PayloadBuilderError::other(
                        OptimismPayloadBuilderError::TransactionEcRecoverFailed,
                    )
                })?;

            //
            // Note that this *only* needs to be done post-regolith hardfork, as deposit nonces
            // were not introduced in Bedrock. In addition, regular transactions don't have deposit
            // nonces, so we don't need to touch the DB for those.
            let depositor = (self.is_regolith && sequencer_tx.is_deposit())
                .then(|| {
                    db.load_cache_account(sequencer_tx.signer())
                        .map(|acc| acc.account_info().unwrap_or_default())
                })
                .transpose()
                .map_err(|_| {
                    PayloadBuilderError::other(OptimismPayloadBuilderError::AccountLoadFailed(
                        sequencer_tx.signer(),
                    ))
                })?;

            let execution_result = match evm_transact_commit(
                &sequencer_tx,
                self.initialized_cfg.clone(),
                self.initialized_block_env.clone(),
                self.evm_config.clone(),
                db,
            ) {
                Ok(result) => result,
                Err(err) => match err {
                    EVMError::Transaction(err) => {
                        trace!(target: "payload_builder", %err, ?sequencer_tx, "Error insequencer transaction, skipping.");
                        continue;
                    }
                    other => {
                        return Err(PayloadBuilderError::EvmExecutionError(other));
                    }
                },
            };

            self.cumulative_gas_used += execution_result.gas_used();

            let receipt = Receipt {
                tx_type: sequencer_tx.tx_type(),
                success: execution_result.is_success(),
                cumulative_gas_used: self.cumulative_gas_used,
                logs: execution_result.into_logs().into_iter().map(Into::into).collect(),
                deposit_nonce: depositor.map(|account| account.nonce),
                // The deposit receipt version was introduced in Canyon to indicate an update to how
                // receipt hashes should be computed when set. The state transition process
                // ensures this is only set for post-Canyon deposit transactions.
                deposit_receipt_version: self
                    .chain_spec
                    .is_fork_active_at_timestamp(
                        OptimismHardfork::Canyon,
                        self.payload_attributes.payload_attributes.timestamp,
                    )
                    .then_some(1),
            };

            self.receipts.push(Some(receipt));
            self.executed_senders.push(sequencer_tx.signer());
            self.executed_txs.push(sequencer_tx.clone().into_signed());
        }

        Ok(())
    }

    /// Adds transactions to the block from the transaction pool
    ///
    /// # Returns
    ///
    /// * `Ok(())` on successful addition of all valid pooled transactions
    /// * `Err(PayloadBuilderError::BuildOutcomeCancelled)` if the operation was cancelled
    /// * `Err(PayloadBuilderError::EvmExecutionError(_))` if an EVM execution error occurs
    #[inline]
    pub fn add_pooled_transactions<DB, Pool>(
        &mut self,
        pool: &Pool,
        db: &mut revm::State<DB>,
        cancel: &Cancelled,
    ) -> Result<(), PayloadBuilderError>
    where
        DB: revm::Database<Error = ProviderError>,
        Pool: TransactionPool,
    {
        if self.payload_attributes.no_tx_pool {
            return Ok(());
        }

        let mut best_txs = pool.best_transactions_with_attributes(BestTransactionsAttributes::new(
            self.base_fee,
            self.initialized_block_env.get_blob_gasprice().map(|gasprice| gasprice as u64),
        ));

        while let Some(pool_tx) = best_txs.next() {
            // ensure we still have capacity for this transaction
            if self.cumulative_gas_used + pool_tx.gas_limit() > self.block_gas_limit {
                // we can't fit this transaction into the block, so we need to mark it as
                // invalid which also removes all dependent transaction from
                // the iterator before we can continue
                best_txs.mark_invalid(&pool_tx);
                continue;
            }

            // A sequencer's block should never contain blob or deposit transactions from the pool.
            if pool_tx.is_eip4844() || pool_tx.tx_type() == TxType::Deposit as u8 {
                best_txs.mark_invalid(&pool_tx);
                continue;
            }

            // Check if the job was cancelled, if so we can exit early.
            if cancel.is_cancelled() {
                return Err(PayloadBuilderError::BuildOutcomeCancelled);
            }

            // convert tx to a signed transaction
            let tx = pool_tx.to_recovered_transaction();

            let execution_result = match evm_transact_commit(
                &tx,
                self.initialized_cfg.clone(),
                self.initialized_block_env.clone(),
                self.evm_config.clone(),
                db,
            ) {
                Ok(res) => res,
                Err(err) => {
                    match err {
                        EVMError::Transaction(err) => {
                            if matches!(err, InvalidTransaction::NonceTooLow { .. }) {
                                // if the nonce is too low, we can skip this transaction
                                trace!(target: "payload_builder", %err, ?tx, "skipping nonce too low transaction");
                            } else {
                                // if the transaction is invalid, we can skip it and all of its
                                // descendants
                                trace!(target: "payload_builder", %err, ?tx, "skipping invalid transaction and its descendants");
                                best_txs.mark_invalid(&pool_tx);
                            }

                            continue;
                        }
                        err => {
                            // this is an error that we should treat as fatal for this attempt
                            return Err(PayloadBuilderError::EvmExecutionError(err));
                        }
                    }
                }
            };

            let gas_used = execution_result.gas_used();
            self.cumulative_gas_used += gas_used;

            let receipt = Receipt {
                tx_type: tx.tx_type(),
                success: execution_result.is_success(),
                cumulative_gas_used: self.cumulative_gas_used,
                logs: execution_result.into_logs().into_iter().map(Into::into).collect(),
                deposit_nonce: None,
                deposit_receipt_version: None,
            };

            // update add to total fees
            let miner_fee = tx
                .effective_tip_per_gas(Some(self.base_fee))
                .expect("fee is always valid; execution succeeded");
            self.total_fees += U256::from(miner_fee) * U256::from(gas_used);

            self.receipts.push(Some(receipt));
            self.executed_senders.push(tx.signer());
            self.executed_txs.push(tx.clone().into_signed());
        }

        Ok(())
    }
}

/// Executes a transaction within the EVM and commits the state changes to the db
///
/// # Returns
///
/// * `Ok(ExecutionResult)` with the result of the transaction execution on success
/// * `Err(EVMError<ProviderError>)` if the transaction execution fails due to EVM-related errors
#[inline]
pub fn evm_transact_commit<EvmConfig, DB>(
    transaction: &TransactionSignedEcRecovered,
    initialized_cfg: CfgEnvWithHandlerCfg,
    initialized_block_env: BlockEnv,
    evm_config: EvmConfig,
    db: &mut revm::State<DB>,
) -> Result<ExecutionResult, EVMError<ProviderError>>
where
    DB: revm::Database<Error = ProviderError>,
    EvmConfig: ConfigureEvm,
{
    let env = EnvWithHandlerCfg::new_with_cfg_env(
        initialized_cfg,
        initialized_block_env,
        evm_config.tx_env(transaction),
    );
    let mut evm = evm_config.evm_with_env(db, env);

    evm.transact_commit()
}