reth_optimism_primitives/transaction/
mod.rs

1//! Optimism transaction types
2
3mod tx_type;
4
5/// Kept for consistency tests
6#[cfg(test)]
7mod signed;
8
9pub use op_alloy_consensus::{OpTransaction, OpTxType, OpTypedTransaction};
10
11/// Signed transaction.
12pub type OpTransactionSigned = op_alloy_consensus::OpTxEnvelope;