Gets the byte representation of the 'r', 's', and 'v' components.
Optionally adjusts 'v' according to EIP-155.
List<int> toBytes([bool eip155 = true]) { return [...rBytes, ...sBytes, !eip155 ? v - 27 : v]; }