Hello,
While using the Auth API for EVM verification, I generated the request message using the following config object. The requestMessage API call returns a 200 status code but when I sign and send the signature back for verification, i always receive a 409 status with the following error
Config:
const config = {
domain: '127.0.0.1:3000',
statement: 'Please sign this message to confirm your identity.',
uri: 'https://127.0.0.1:3000',
timeout: 120,
address,
chain: 1,
}
Error:
MoralisError [Moralis SDK Core Error]: [C0006] Request failed, Bad Request(400): Invalid Challenge
{
isMoralisError: true,
code: 'C0006',
details: {
status: 400,
response: {
status: 400,
statusText: 'Bad Request',
headers: [AxiosHeaders],
config: [Object],
request: [ClientRequest],
data: [Object]
}
}
}