Signing Data
Signing Data with MetaMask
If you’d like to jump to some working signature examples, you can visit this repository.
If you’d like to read our JavaScript implementations of these methods, they are all available in the npm package eth-sig-util.
Note that MetaMask supports signing transactions with Trezor and Ledger hardware wallets. These hardware wallets currently only support signing data using the personal_sign
method. If you have trouble logging in to a website or dapp when using a Ledger or Trezor, the site may be requesting you sign data via an unsupported method, in which case we recommend using your standard MetaMask account.
A Brief History
There are currently five signing methods in MetaMask, and you might wonder the history of these methods. Studying the history of these methods has some lessons in it for the emergent lessons of decentralized standards emergence. Our current five methods are:
eth_sign
personal_sign
signTypedData
(currently identical tosignTypedData_v1
)signTypedData_v1
signTypedData_v3
There are likely to be many more over time. When MetMask first started, the Provider API wasn’t designed to be exposed to untrusted websites, and so some considerations weren’t taken as seriously as they were later.
In particular, the method eth_sign
is an open-ended signing method that allows signing an arbitrary hash, which means it can be used to sign transactions, or any other data, making it a dangerous phishing risk.
For this reason, we make this method show the most frightening possible message to the user, and generally discourage using this method in production. However, some applications (usually admin panels internal to teams) use this method for the sake of its ease of use, and so we have continued to support it for the sake of not breaking the workflows of active projects.
Eventually, the personal_sign
spec was proposed, which added a prefix to the data so it could not impersonate transactions. We also made this method able to display human readable text when UTF-8 encoded, making it a popular choice for site logins.
However, the text-prefix made those signatures expensive to verify on-chain, and so with the help of the 0xProtocol team and SpankChain, the EIP 712 spec was written.
The strange part of EIP 712, and this decentralized standards ecosystem, is that the proposal changed several times while retaining the same EIP. This means what we initially implemented as signTypedData
was the earliest proposed version, while other groups implemented later versions under the same method name.
To avoid compatibility issues between clients, we recommend using the hard-versioned method names signTypedData_v1
and signTypedData_v3
. The missing v2
represents an intermediary design that was implemented by the Cipher browser, so that we have room to implement it if there is ever enough developer demand for it.
In the future, it may help to have method names include a hash of their exact proposal, since in a decentralized ecosystem, there is no absolute source of truth of what a given name should map to. Instead, we are forced to invent new patterns of collaboration, where we can drive forward and innovate, while simultaneously avoiding creating a brittle ecosystem by changing our meanings out from under the words.
I hope this has been a useful introduction to the history of our signing methods!
Sign Typed Data v1
This early version of the spec lacked some later security improvements, and should generally be neglected in favor of signTypedData_v3.
Also known as signTypedData
, originally premiered October 2017 in this blog post, this method was the original state-channel-centric signing method.
The signTypedData
familiy has a few major design considerations:
- Cheap to verify on chain
- Still somewhat human readable
- Hard to phish signatures If on-chain verifiability cost is a high priority for you, you might want to consider it.
Sign Typed Data v3
The method signTypedData_v3
currently represents the latest version of the EIP 712 spec, making it the most secure method for signing cheap-to-verify data on-chain that we have yet.
This does not mean it is perfect, and does not mean we will not eventually have a v4
, but we do intend to protect this namespace and keep it compatible going forwards.
We have a great introductory blog post to this method here.
Hopefully soon we will also have good examples for parsing method input into structs for verification on-chain (great contribution opportunity!)
Sign Typed Data v4
The method signTypedData_v4 currently represents the latest version of the EIP 712 spec, with added support for arrays and with a breaking fix for the way structs are encoded.
This does not mean it is perfect, and does not mean we will not eventually have a v5, but we do intend to protect this namespace and keep it compatible going forwards.
We have a great introductory blog post to this method here.
Hopefully soon we will also have good examples for parsing method input into structs for verification on-chain (great contribution opportunity!)