Signing Data
Signing Data with TokenPocket Extension
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
Introduction
There are currently six signing methods in TokenPocket Extension, and you might wonder about the history of these methods. Studying the history of these methods yields some guiding lessons for the emergence of decentralized standards. Our current five methods are:
eth_sign
personal_sign
signTypedData
(currently identical tosignTypedData_v1
)signTypedData_v1
signTypedData_v3
signTypedData_v4
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 is encoded, making it a popular choice for site logins.
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, this method was the original state-channel-centric signing method.
The signTypedData family 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.
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.
Sign Typed Data Message Parameters
domain
: The Domain or domain signature is important because it:
Will only be accepted for a specific website/contract.
Makes sure signatures are valid only where they are intended to be valid
Allows you have a unique contract that verifies the address
This is a bunch of information that restricts where the signature is valid
This is the domain of validity. Could be a contract, a URL, etc.
What needs to be put in here, specifically what the DApp tells you
Make sure your signature(s) don't collide with other signatures.
chainId
:The chainId tells you what chain you're on and this is important because:
It makes sure signatures signed on Rinkeby are not valid on another chain, such as the Ethereum MainNet.
name
:This is primarily for UX(User Experience) purposes.
For example, as a user, you're using an Ether Mail app and a dialog comes up for cryptokitties exchange, this would arouse suspicion due to what the name is on the signature.
verifyingContract
: This is an extra layer of assurance. Even if two developers end up creating an app with the same name, they will never have the same contract address. (You can add another field salt but it's complete overkill and unnecessary)
If you are unsure of the name this will show the contract responsible for message verification.
This field will also take a URL.
version
: This tells you the current version of the domain object.
message
: Completely open to what you would like the structure of it to be. Every field is optional.
Below is an example of signing typed data with TokenPocket Extension. Reference here
Example
Last updated