PlaintextTx
Unencrypted transaction view for debugging
Overview
Definition
@dataclass(frozen=True)
class PlaintextTx:
"""Unencrypted transaction view returned by debug writes.
Contains the same fields as the shielded transaction but with
plaintext calldata (before AES-GCM encryption).
"""
to: ChecksumAddress | None
data: HexBytes
nonce: int
gas: int
gas_price: int
value: intFields
Field
Type
Description
Examples
Get from Debug Write
Compare with Shielded Transaction
Inspect Function Call
Gas Estimation
Field Details
data (Plaintext Calldata)
to
gas
gas_price
value
Properties
Use Cases
Debugging Encryption
Testing Function Encoding
Gas Optimization
Warnings
Notes
See Also
Last updated

