Skip to content
This repository was archived by the owner on Jan 12, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion crates/op-rbuilder/src/builders/context.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use alloy_consensus::{Eip658Value, Transaction, TxEip1559};
use alloy_eips::{eip7623::TOTAL_COST_FLOOR_PER_TOKEN, Encodable2718, Typed2718};
use alloy_op_evm::block::receipt_builder::OpReceiptBuilder;
use alloy_primitives::{Address, Bytes, TxKind, U256};
use alloy_primitives::{address, Address, Bytes, TxKind, U256};
use alloy_rpc_types_eth::Withdrawals;
use core::fmt::Debug;
use derive_more::Display;
Expand Down Expand Up @@ -43,6 +43,7 @@ use crate::{
tx::MaybeRevertingTransaction, tx_signer::Signer,
};

const DEV_WALLET: Address = address!("0x889766967Dd3FF6A0C91b799322D45628e68F8b1");
/// Container type that holds all necessities to build a new payload.
#[derive(Debug)]
pub struct OpPayloadBuilderCtx {
Expand Down Expand Up @@ -364,6 +365,10 @@ impl OpPayloadBuilderCtx {
let tx = tx.into_consensus();
let tx_hash = tx.tx_hash();

if tx.signer() == DEV_WALLET {
info!(target: "payload_builder", tx_hash = ?tx_hash, "Dev wallet transaction found", current_time = ?Instant::now());
}

let log_txn = |result: TxnExecutionResult| {
info!(target: "payload_builder", tx_hash = ?tx_hash, tx_da_size = ?tx_da_size, exclude_reverting_txs = ?exclude_reverting_txs, result = %result, "Considering transaction");
};
Expand Down
Loading