pub type TypedTransaction = EthereumTypedTransaction<TxEip4844Variant>;
Expand description
Basic typed transaction which can contain both TxEip4844
and TxEip4844WithSidecar
.
Aliased Type§
enum TypedTransaction {
Legacy(TxLegacy),
Eip2930(TxEip2930),
Eip1559(TxEip1559),
Eip4844(TxEip4844Variant),
Eip7702(TxEip7702),
}