mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
539 lines
21 KiB
Rust
539 lines
21 KiB
Rust
//! 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::{EthereumHardforks, OptimismHardfork};
|
|
use reth_evm::{
|
|
system_calls::pre_block_beacon_root_contract_call, ConfigureEvm, ConfigureEvmEnv,
|
|
NextBlockEnvAttributes,
|
|
};
|
|
use reth_execution_types::ExecutionOutcome;
|
|
use reth_payload_primitives::{PayloadBuilderAttributes, PayloadBuilderError};
|
|
use reth_primitives::{
|
|
constants::BEACON_NONCE,
|
|
eip4844::calculate_excess_blob_gas,
|
|
proofs,
|
|
revm_primitives::{BlockEnv, CfgEnvWithHandlerCfg},
|
|
Block, Header, IntoRecoveredTransaction, Receipt, TxType, EMPTY_OMMER_ROOT_HASH,
|
|
};
|
|
use reth_provider::StateProviderFactory;
|
|
use reth_revm::database::StateProviderDatabase;
|
|
use reth_transaction_pool::{
|
|
noop::NoopTransactionPool, BestTransactionsAttributes, TransactionPool,
|
|
};
|
|
use reth_trie::HashedPostState;
|
|
use revm::{
|
|
db::states::bundle_state::BundleRetention,
|
|
primitives::{EVMError, EnvWithHandlerCfg, InvalidTransaction, ResultAndState},
|
|
DatabaseCommit, 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.
|
|
pub compute_pending_block: bool,
|
|
/// The type responsible for creating the evm.
|
|
pub evm_config: EvmConfig,
|
|
}
|
|
|
|
impl<EvmConfig> OptimismPayloadBuilder<EvmConfig> {
|
|
/// `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
|
|
}
|
|
}
|
|
impl<EvmConfig> OptimismPayloadBuilder<EvmConfig>
|
|
where
|
|
EvmConfig: ConfigureEvmEnv<Header = Header>,
|
|
{
|
|
/// Returns the configured [`CfgEnvWithHandlerCfg`] and [`BlockEnv`] for the targeted payload
|
|
/// (that has the `parent` as its parent).
|
|
pub fn cfg_and_block_env(
|
|
&self,
|
|
config: &PayloadConfig<OptimismPayloadBuilderAttributes>,
|
|
parent: &Header,
|
|
) -> (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(parent, 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> {
|
|
let (cfg_env, block_env) = self.cfg_and_block_env(&args.config, &args.config.parent_block);
|
|
optimism_payload(
|
|
self.evm_config.clone(),
|
|
args,
|
|
cfg_env,
|
|
block_env,
|
|
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,
|
|
};
|
|
let (cfg_env, block_env) = self.cfg_and_block_env(&args.config, &args.config.parent_block);
|
|
optimism_payload(self.evm_config.clone(), args, cfg_env, block_env, false)?
|
|
.into_payload()
|
|
.ok_or_else(|| PayloadBuilderError::MissingPayload)
|
|
}
|
|
}
|
|
|
|
/// 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]
|
|
pub(crate) fn optimism_payload<EvmConfig, Pool, Client>(
|
|
evm_config: EvmConfig,
|
|
args: BuildArguments<Pool, Client, OptimismPayloadBuilderAttributes, OptimismBuiltPayload>,
|
|
initialized_cfg: CfgEnvWithHandlerCfg,
|
|
initialized_block_env: BlockEnv,
|
|
_compute_pending_block: bool,
|
|
) -> Result<BuildOutcome<OptimismBuiltPayload>, PayloadBuilderError>
|
|
where
|
|
EvmConfig: ConfigureEvm<Header = Header>,
|
|
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 PayloadConfig { parent_block, attributes, chain_spec, extra_data } = config;
|
|
|
|
debug!(target: "payload_builder", id=%attributes.payload_attributes.payload_id(), parent_hash = ?parent_block.hash(), parent_number = parent_block.number, "building new payload");
|
|
|
|
let mut cumulative_gas_used = 0;
|
|
let block_gas_limit: u64 = attributes.gas_limit.unwrap_or_else(|| {
|
|
initialized_block_env.gas_limit.try_into().unwrap_or(chain_spec.max_gas_limit)
|
|
});
|
|
let base_fee = initialized_block_env.basefee.to::<u64>();
|
|
|
|
let mut executed_txs = Vec::with_capacity(attributes.transactions.len());
|
|
let mut executed_senders = Vec::with_capacity(attributes.transactions.len());
|
|
|
|
let mut best_txs = pool.best_transactions_with_attributes(BestTransactionsAttributes::new(
|
|
base_fee,
|
|
initialized_block_env.get_blob_gasprice().map(|gasprice| gasprice as u64),
|
|
));
|
|
|
|
let mut total_fees = U256::ZERO;
|
|
|
|
let block_number = initialized_block_env.number.to::<u64>();
|
|
|
|
let is_regolith = chain_spec.is_fork_active_at_timestamp(
|
|
OptimismHardfork::Regolith,
|
|
attributes.payload_attributes.timestamp,
|
|
);
|
|
|
|
// apply eip-4788 pre block contract call
|
|
pre_block_beacon_root_contract_call(
|
|
&mut 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,
|
|
&mut db,
|
|
)
|
|
.map_err(|err| {
|
|
warn!(target: "payload_builder", %err, "missing create2 deployer, skipping block.");
|
|
PayloadBuilderError::other(OptimismPayloadBuilderError::ForceCreate2DeployerFail)
|
|
})?;
|
|
|
|
let mut receipts = Vec::with_capacity(attributes.transactions.len());
|
|
for sequencer_tx in &attributes.transactions {
|
|
// Check if the job was cancelled, if so we can exit early.
|
|
if cancel.is_cancelled() {
|
|
return Ok(BuildOutcome::Cancelled)
|
|
}
|
|
|
|
// A sequencer's block 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)
|
|
})?;
|
|
|
|
// Cache the depositor account prior to the state transition for the deposit nonce.
|
|
//
|
|
// 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 = (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 env = EnvWithHandlerCfg::new_with_cfg_env(
|
|
initialized_cfg.clone(),
|
|
initialized_block_env.clone(),
|
|
evm_config.tx_env(&sequencer_tx),
|
|
);
|
|
|
|
let mut evm = evm_config.evm_with_env(&mut db, env);
|
|
|
|
let ResultAndState { result, state } = match evm.transact() {
|
|
Ok(res) => res,
|
|
Err(err) => {
|
|
match err {
|
|
EVMError::Transaction(err) => {
|
|
trace!(target: "payload_builder", %err, ?sequencer_tx, "Error in sequencer transaction, skipping.");
|
|
continue
|
|
}
|
|
err => {
|
|
// this is an error that we should treat as fatal for this attempt
|
|
return Err(PayloadBuilderError::EvmExecutionError(err))
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
// to release the db reference drop evm.
|
|
drop(evm);
|
|
// commit changes
|
|
db.commit(state);
|
|
|
|
let gas_used = result.gas_used();
|
|
|
|
// add gas used by the transaction to cumulative gas used, before creating the receipt
|
|
cumulative_gas_used += gas_used;
|
|
|
|
// Push transaction changeset and calculate header bloom filter for receipt.
|
|
receipts.push(Some(Receipt {
|
|
tx_type: sequencer_tx.tx_type(),
|
|
success: result.is_success(),
|
|
cumulative_gas_used,
|
|
logs: 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: chain_spec
|
|
.is_fork_active_at_timestamp(
|
|
OptimismHardfork::Canyon,
|
|
attributes.payload_attributes.timestamp,
|
|
)
|
|
.then_some(1),
|
|
}));
|
|
|
|
// append sender and transaction to the respective lists
|
|
executed_senders.push(sequencer_tx.signer());
|
|
executed_txs.push(sequencer_tx.into_signed());
|
|
}
|
|
|
|
if !attributes.no_tx_pool {
|
|
while let Some(pool_tx) = best_txs.next() {
|
|
// ensure we still have capacity for this transaction
|
|
if cumulative_gas_used + pool_tx.gas_limit() > 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 Ok(BuildOutcome::Cancelled)
|
|
}
|
|
|
|
// convert tx to a signed transaction
|
|
let tx = pool_tx.to_recovered_transaction();
|
|
let env = EnvWithHandlerCfg::new_with_cfg_env(
|
|
initialized_cfg.clone(),
|
|
initialized_block_env.clone(),
|
|
evm_config.tx_env(&tx),
|
|
);
|
|
|
|
// Configure the environment for the block.
|
|
let mut evm = evm_config.evm_with_env(&mut db, env);
|
|
|
|
let ResultAndState { result, state } = match evm.transact() {
|
|
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))
|
|
}
|
|
}
|
|
}
|
|
};
|
|
// drop evm so db is released.
|
|
drop(evm);
|
|
// commit changes
|
|
db.commit(state);
|
|
|
|
let gas_used = result.gas_used();
|
|
|
|
// add gas used by the transaction to cumulative gas used, before creating the
|
|
// receipt
|
|
cumulative_gas_used += gas_used;
|
|
|
|
// Push transaction changeset and calculate header bloom filter for receipt.
|
|
receipts.push(Some(Receipt {
|
|
tx_type: tx.tx_type(),
|
|
success: result.is_success(),
|
|
cumulative_gas_used,
|
|
logs: 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(base_fee))
|
|
.expect("fee is always valid; execution succeeded");
|
|
total_fees += U256::from(miner_fee) * U256::from(gas_used);
|
|
|
|
// append sender and transaction to the respective lists
|
|
executed_senders.push(tx.signer());
|
|
executed_txs.push(tx.into_signed());
|
|
}
|
|
}
|
|
|
|
// check if we have a better block
|
|
if !is_better_payload(best_payload.as_ref(), total_fees) {
|
|
// can skip building the block
|
|
return Ok(BuildOutcome::Aborted { fees: total_fees, cached_reads })
|
|
}
|
|
|
|
let WithdrawalsOutcome { withdrawals_root, withdrawals } = commit_withdrawals(
|
|
&mut db,
|
|
&chain_spec,
|
|
attributes.payload_attributes.timestamp,
|
|
attributes.clone().payload_attributes.withdrawals,
|
|
)?;
|
|
|
|
// merge all transitions into bundle state, this would apply the withdrawal balance changes
|
|
// and 4788 contract call
|
|
db.merge_transitions(BundleRetention::Reverts);
|
|
|
|
let execution_outcome = ExecutionOutcome::new(
|
|
db.take_bundle(),
|
|
vec![receipts.clone()].into(),
|
|
block_number,
|
|
Vec::new(),
|
|
);
|
|
let receipts_root = execution_outcome
|
|
.optimism_receipts_root_slow(
|
|
block_number,
|
|
&chain_spec,
|
|
attributes.payload_attributes.timestamp,
|
|
)
|
|
.expect("Number is in range");
|
|
let logs_bloom = execution_outcome.block_logs_bloom(block_number).expect("Number is in range");
|
|
|
|
// calculate the state root
|
|
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"
|
|
);
|
|
})?
|
|
};
|
|
|
|
// create the block header
|
|
let transactions_root = proofs::calculate_transaction_root(&executed_txs);
|
|
|
|
// initialize empty blob sidecars. There are no blob transactions on L2.
|
|
let blob_sidecars = Vec::new();
|
|
let mut excess_blob_gas = None;
|
|
let mut blob_gas_used = None;
|
|
|
|
// only determine cancun fields when active
|
|
if chain_spec.is_cancun_active_at_timestamp(attributes.payload_attributes.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: initialized_block_env.coinbase,
|
|
state_root,
|
|
transactions_root,
|
|
receipts_root,
|
|
withdrawals_root,
|
|
logs_bloom,
|
|
timestamp: attributes.payload_attributes.timestamp,
|
|
mix_hash: attributes.payload_attributes.prev_randao,
|
|
nonce: BEACON_NONCE,
|
|
base_fee_per_gas: Some(base_fee),
|
|
number: parent_block.number + 1,
|
|
gas_limit: block_gas_limit,
|
|
difficulty: U256::ZERO,
|
|
gas_used: cumulative_gas_used,
|
|
extra_data,
|
|
parent_beacon_block_root: attributes.payload_attributes.parent_beacon_block_root,
|
|
blob_gas_used,
|
|
excess_blob_gas,
|
|
requests_root: None,
|
|
};
|
|
|
|
// seal the block
|
|
let block = Block { header, body: executed_txs, ommers: vec![], 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(executed_senders),
|
|
execution_output: Arc::new(execution_outcome),
|
|
hashed_state: Arc::new(hashed_state),
|
|
trie: Arc::new(trie_output),
|
|
};
|
|
|
|
let mut payload = OptimismBuiltPayload::new(
|
|
attributes.payload_attributes.id,
|
|
sealed_block,
|
|
total_fees,
|
|
chain_spec,
|
|
attributes,
|
|
Some(executed),
|
|
);
|
|
|
|
// extend the payload with the blob sidecars from the executed txs
|
|
payload.extend_sidecars(blob_sidecars);
|
|
|
|
Ok(BuildOutcome::Better { payload, cached_reads })
|
|
}
|