sBytes property
Gets the byte representation of the 's' component of an Ethereum signature.
The 's' component represents the y-coordinate of the elliptic curve point generated during the signature process. The bytes are obtained by converting the 's' component BigInt to a byte list with a specified length.
Implementation
List<int> get sBytes =>
BigintUtils.toBytes(s, length: ETHSignerConst.digestLength);