Game Developers
Step-by-Step Guide for Developers
bashCopy codePOST /api/authenticatejsonCopy code{ "walletAddress": "0xPlayerWalletAddress" }jsonCopy code{ "token": "jwt_token", "playerId": "player123" }
bashCopy codePOST /api/purchasejsonCopy code{ "playerId": "player123", "itemId": "item001", "tokenAmount": 50 }jsonCopy code{ "status": "success", "transactionId": "txn_12345" }
bashCopy codePOST /api/tournaments/createjsonCopy code{ "gameId": "game123", "entryFee": 100, "maxPlayers": 50, "rewardDistribution": "top3" }jsonCopy code{ "tournamentId": "tourn123", "status": "created" }
Last updated