Skip to content

Commit

Permalink
Update EIP-712: Fix incorrect byte counts (#8722)
Browse files Browse the repository at this point in the history
  • Loading branch information
jshufro authored Sep 25, 2024
1 parent 1250ccd commit 7ced2f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EIPS/eip-712.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ Typed data is a JSON object containing type information, domain separator parame

##### Returns

`DATA`: Signature. As in `eth_sign` it is a hex encoded 129 byte array starting with `0x`. It encodes the `r`, `s` and `v` parameters from appendix F of the yellow paper in big-endian format. Bytes 0...64 contain the `r` parameter, bytes 64...128 the `s` parameter and the last byte the `v` parameter. Note that the `v` parameter includes the chain id as specified in [EIP-155][eip-155].
`DATA`: Signature. As in `eth_sign` it is a hex encoded 65 byte array starting with `0x`. It encodes the `r`, `s` and `v` parameters from appendix F of the yellow paper in big-endian format. Bytes 0...32 contain the `r` parameter, bytes 32...64 the `s` parameter and the last byte the `v` parameter. Note that the `v` parameter includes the chain id as specified in [EIP-155][eip-155].

[eip-155]: ./eip-155.md

Expand Down

0 comments on commit 7ced2f3

Please sign in to comment.