đŸĒ™Request authentication

POST /auth/address-check

This endpoint is designed to be executed on the server-side as part of our secure authentication process. It validates the integrity and authenticity of a wallet address using a token received during the frontend login procedure. This verification step is crucial for ensuring that the wallet address in question is legitimately associated with the current user session, enhancing the overall security of our system.

Request format

To initiate the verification process, a POST request should be sent to this endpoint with a JSON payload containing two key pieces of information: the wallet address to be verified and the token received from the frontend after the initial login phase.

Headers

NameValue

Content-Type

application/json

Body

NameTypeDescriptionRequired

wallet

string

requested amount

YES

token

string

token for verification

YES

Response

{
  "status": 200,
  "valid": <true/false>
}

Once you obtain the token, follow the instructions on this page:

Last updated