We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
code example: const url = "https://auth.api.4everland.org"; const authclient = new AuthClient(url); const address = "0x664b4Fab7aCe6489d59a8d70712BD148f3C4E0f4"; // metamask address const signature = await authclient.getSignText(address); console.log(signature);
// get error response const { accessKeyId, secretAccessKey, sessionToken } = await authclient.verifySign( address, signature ); const params = { accessKeyId, secretAccessKey, sessionToken, endpoint: "https://endpoint.4everland.co" }; console.log(params);
please help
The text was updated successfully, but these errors were encountered:
No branches or pull requests
code example:
const url = "https://auth.api.4everland.org";
const authclient = new AuthClient(url);
const address = "0x664b4Fab7aCe6489d59a8d70712BD148f3C4E0f4"; // metamask address
const signature = await authclient.getSignText(address);
console.log(signature);
// get error response
const { accessKeyId, secretAccessKey, sessionToken } = await authclient.verifySign(
address,
signature
);
const params = {
accessKeyId,
secretAccessKey,
sessionToken,
endpoint: "https://endpoint.4everland.co"
};
console.log(params);
please help
The text was updated successfully, but these errors were encountered: