LegacyFields
Standard EVM transaction fields
Overview
Definition
@dataclass(frozen=True)
class LegacyFields:
"""Standard EVM transaction fields used in metadata construction.
Attributes:
chain_id: Numeric chain identifier.
nonce: Sender's transaction count.
to: Recipient address, or None for contract creation.
value: Amount of wei to transfer.
"""
chain_id: int
nonce: int
to: ChecksumAddress | None
value: intFields
Field
Type
Description
Examples
Manual Construction
Contract Creation
Use in TxSeismicMetadata
Extract from Wallet Client
Field Details
chain_id
nonce
to
value
Properties
Why Called "Legacy"?
Notes
See Also
Last updated

