LegacyFields
Standard EVM transaction fields
Definition
@dataclass(frozen=True)
class LegacyFields:
chain_id: int
nonce: int
to: ChecksumAddress | None
value: intFields
Field
Type
Description
Example
from seismic_web3 import LegacyFields
legacy = LegacyFields(
chain_id=5124,
nonce=42,
to="0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266",
value=1 * 10**18, # 1 ETH in wei
)Notes
See Also
Last updated

