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
Annoyingly I get a not implemented error when using dydx's client saying that eth_signTypedData is not implemented. After some searching I found that geth doesn't support that method, but it's sibling project Clef support it (called account_signTypedData) https://geth.ethereum.org/docs/clef/apis#account_signtypeddata, but not other APIs. Web3.py only supports one provider per instance, so it would be helpful to be able to create web3 clients as appropriate for the different services.
The text was updated successfully, but these errors were encountered:
I personally ran into this error when trying to use client.onboarding.derive_stark_key() as seen in the onboarding here. However, I noticed that when I pass my ethereum private key, this error vanishes. The following worked for me.
Annoyingly I get a not implemented error when using dydx's client saying that
eth_signTypedData
is not implemented. After some searching I found that geth doesn't support that method, but it's sibling projectClef
support it (calledaccount_signTypedData
) https://geth.ethereum.org/docs/clef/apis#account_signtypeddata, but not other APIs. Web3.py only supports one provider per instance, so it would be helpful to be able to create web3 clients as appropriate for the different services.The text was updated successfully, but these errors were encountered: