@hyperbridge/sdk 2.8.5 → 2.8.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3866,6 +3866,9 @@ interface SigningAccount {
3866
3866
  *
3867
3867
  * No chain id parameter: EIP-712 carries it in `domain.chainId`, which is what
3868
3868
  * the digest covers and what a backend scoping the request to a chain reads.
3869
+ *
3870
+ * Returns the 65-byte `r ‖ s ‖ v` signature as 0x-hex, `v` 27 or 28 — the
3871
+ * `eth_signTypedData_v4` form. Bid validation recovers against exactly this.
3869
3872
  */
3870
3873
  signTypedData: (typedData: unknown) => Promise<HexString$1>;
3871
3874
  }