SeismicTxEnvelope
Signed transaction wrapper supporting all Ethereum and Seismic types
Overview
Definition
pub enum SeismicTxEnvelope {
Legacy(Signed<TxLegacy>),
Eip2930(Signed<TxEip2930>),
Eip1559(Signed<TxEip1559>),
Eip4844(Signed<TxEip4844Variant>),
Eip7702(Signed<TxEip7702>),
Seismic(Signed<TxSeismic>),
}Variants
Variant
Type Code
Inner Type
Description
The Signed<T> Wrapper
Signed<T> WrapperField
Type
Description
How Signed Transactions Are Created
Examples
Matching on Envelope Variants
Accessing the Transaction Hash
Accessing the Signature
Relationship to Alloy's TxEnvelope
RLP Encoding
Trait Implementations
Trait
Description
Notes
See Also
Last updated

