Token integration isn't available yet. This page says plainly what exists today, so you can tell the two apart.
Coming soon
There is no token API to call and nothing to configure. Any snippet you find elsewhere that claims otherwise is not ours. When it ships, the endpoints and SDK methods will appear on this page and in the API reference, no separate signup, and nothing you build today will need to be thrown away.One piece is already live and is the piece everything else will hang off: players can prove they own a Solana wallet, and your server can read the verified address.
solanaWallet, the verified address, or null if they haven't linked one.const player = await indie.verifyToken(tokenFromBrowser);
// Same JSON as POST /api/auth/verify-token:
// { valid: true, userId, name, email, discordId, solanaWallet }
if (!player?.solanaWallet) {
return promptPlayerToLinkWallet();
}There's nothing to test yet beyond the wallet fact. Link a wallet on your own account, then verify one of your own player tokens (see Authentication) and confirm solanaWallet comes back with the address you linked, and null on an account without one. The sandbox covers login, analytics and player data; it will grow a token section on the day there is one.