Wallet Link Challenge
Wallet
Wallet Link Challenge
Request a challenge nonce for wallet linking.
The user must sign this challenge message to prove ownership of the wallet. Challenge expires in 5 minutes and can only be used once.
Rate limited: 5 challenges per hour per API key.
GET
Wallet Link Challenge
Request a challenge nonce for wallet linking.
The challenge is an off-chain plain-text message — no transaction is involved.
Overview
The user must sign this challenge message to prove ownership of the wallet. Challenge expires in 5 minutes and can only be used once.Flow
- Call this endpoint with the wallet
addressyou want to link - Receive a
nonceandmessageto sign - Sign the
messagewith the wallet’s supported signing flow - Submit the signature to
POST /wallet/link
signature_type=0 and 1, this is typically an EIP-191 personal_sign signature. For signature_type=2 and 3, the backend verifies a contract-wallet-compatible signature path instead of assuming a raw EOA private key.
Rate Limiting
- 5 challenges per hour per API key
Challenge Message Format
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Wallet address to link (0x-prefixed, 40 hex chars)
Pattern:
^0x[a-fA-F0-9]{40}$