-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
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
eth_signTypedData not supported by Infura & AlchemyAPI #126
Comments
It works with Infura. |
@crazyoptimist, thanks, that worked for me! |
Glad it helped! |
Hello, |
Hey,
Or maybe you can have a look here in my project: Btw you need an moralis endpoint with an adress like this: https://asdf123.usemoralis.com:2053/server |
@patpatwithhat indeed, this is what I miss, Moralis endpoints. It seems it is not a free service. |
@patpatwithhat how did you manage to get it working, if you mind me asking? I've managed to sign, but then I am stuck with transferring it to endpoint to pass it to web3 library. from moralis import auth
api_key = '8ExCSTkEbKH233qewaef0jtIqyNOYPTSm23qefaefxmGcT5KmFJeCVgWSDKzY'
body = {
"domain": "defi.finance",
"chainId": "1",
"address": "0x08EAaE620392dEB7C6339651d4c36f5F7de82b23",
"statement": "Please confirm",
"uri": "https://defi.finance/",
"expirationTime": "2020-01-01T00:00:00.000Z",
"notBefore": "2020-01-01T00:00:00.000Z",
"resources": ['https://docs.moralis.io/'],
"timeout": 15,
}
result = auth.challenge.request_challenge_evm(
api_key=api_key,
body=body,
) result is returning this str:
|
This looks like u are building a web request. If you read your str: Also, I wouldn't recommend you share API keys at all! |
Any plan to provide alteranative so we could use
Infura
orAlchemy
RPC nodes?Thanks
see also at https://community.infura.io/t/eth-signtypeddata-is-currently-working/2626/3
The text was updated successfully, but these errors were encountered: