pub trait ArbTransactionExt {
// Provided methods
fn submit_retryable_info(&self) -> Option<SubmitRetryableInfo> { ... }
fn retry_tx_info(&self) -> Option<RetryTxInfo> { ... }
}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.