- tags: Ethereum, Sign Message
- source: “Signing Data | MetaMask Docs.” Accessed April 6, 2023. https://docs.metamask.io/guide/signing-data.html#signtypeddata-v4.
Five Methods1
eth_sign
allow to sign arbitrary hash.2personal_sign
add prefix to data and human readable text that encoded UFT-8.3signTypedData
orsignTypedData_v1
first release that lacked some later security improvements.signTypedData_v3
signTypedData_v4
compatible with V3.
Differences Between V3 and V44
Some input types that V3 doesn’t support but V4 does:
- Custom type array
- Custom type with
null
input
Some input types that V4 doesn’t support but V3 does:
- Atomic type with
undefined
input - Dynamic type with
undefined
input
Atomic types are of a fixed size (e.g.
int8d
), whereas dynamic types can vary in size (e.g. strings, bytes). We also test arrays of each of these types.