Verifies a wallet address and signature to generate a bearer token for authentication.
The wallet address of the user.
0x1234567890abcdef1234567890abcdef12345678
The signature generated by the user's wallet for verification.
0xabcdef...
POST /auth HTTP/1.1 Host: Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 88 { "walletAddress": "0x1234567890abcdef1234567890abcdef12345678", "signature": "0xabcdef..." }
Bearer token generated successfully.
{ "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..." }