Signature
ECDSA signature components
Overview
Definition
@dataclass(frozen=True)
class Signature:
"""ECDSA signature components (all-or-nothing).
Attributes:
v: Recovery identifier (0 or 1, per EIP-155 / y-parity).
r: First 32-byte integer of the signature.
s: Second 32-byte integer of the signature.
"""
v: int
r: int
s: intFields
Field
Type
Description
Examples
Create from Signature Components
Extract from eth_keys Signature
Use in Transaction Serialization
Properties
Recovery Identifier (v)
Notes
See Also
Last updated

