We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@dmihal I tried to fix it and the following changes made it work:
Change
eth-permit/src/rpc.ts
Line 37 in 5dfcfa5
const result = await send(provider, 'eth_signTypedData', [fromAddress, JSON.parse(_typeData)]);
Add jsonrpc: '2.0', to
jsonrpc: '2.0',
Line 4 in 5dfcfa5
Do you have any insights on this?
The text was updated successfully, but these errors were encountered:
Apparently metamask knows about this and a fix is shipped. Already working on firefox and will be working on chrome next week. Discussed here
Sorry, something went wrong.
The new version tries eth_signTypedData_v4 & eth_signTypedData
Let me know if anyone's still having issues
No branches or pull requests
@dmihal I tried to fix it and the following changes made it work:
Change
eth-permit/src/rpc.ts
Line 37 in 5dfcfa5
const result = await send(provider, 'eth_signTypedData', [fromAddress, JSON.parse(_typeData)]);
(two changes)Add
jsonrpc: '2.0',
toeth-permit/src/rpc.ts
Line 4 in 5dfcfa5
Do you have any insights on this?
The text was updated successfully, but these errors were encountered: