Web3Auth / web3auth-web

Simple infrastructure that enables Web3 wallets and applications to provide seamless user logins for both mainstream and Web3.0 users.
https://web3auth.io/docs
Other
426 stars 229 forks source link

eth_signTypedData_v3 method issue #625

Open anand-nftically opened 2 years ago

anand-nftically commented 2 years ago

Issue while signing data using eth_signTypedData_v3 using third party libraries. the main issue is web3auth wallet is accepting object while all other wallets accepts data as stringified object for EIP712Domain. Please refer to the same issue resolved by walletlink (coinbase wallet now).

https://github.com/coinbase/coinbase-wallet-sdk/issues/60

That's why some libraries could not work properly with web3auth wallet, found this issue when working with biconomy gasless transactions related discussion https://github.com/Web3Auth/Web3Auth/discussions/504

provider.send("eth_signTypedData_v3",[userEthAddress, Data]); in the above piece of code web3Auth wallet must accept Data as string or in both string/object

anand-nftically commented 2 years ago

is there any update regarding this issue