You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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).
That's why some libraries could not work properly with web3auth wallet, found this issue when working with biconomy gasless transactions related discussion #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
The text was updated successfully, but these errors were encountered:
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).
coinbase/coinbase-wallet-sdk#60
That's why some libraries could not work properly with web3auth wallet, found this issue when working with biconomy gasless transactions related discussion #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
The text was updated successfully, but these errors were encountered: