pub trait ArbTransactionExt {
// Provided methods
fn submit_retryable_info(&self) -> Option<SubmitRetryableInfo> { ... }
fn retry_tx_info(&self) -> Option<RetryTxInfo> { ... }
fn poster_units_for(
&self,
_level: u64,
compute: &mut dyn FnMut() -> u64,
) -> u64 { ... }
}Expand description
Trait for extracting Arbitrum-specific transaction data beyond the
standard Transaction trait.
Provided Methods§
fn submit_retryable_info(&self) -> Option<SubmitRetryableInfo>
fn retry_tx_info(&self) -> Option<RetryTxInfo>
Implementations on Foreign Types§
impl<T> ArbTransactionExt for EthereumTxEnvelope<T>
Standard Ethereum transaction envelopes don’t carry retryable data.