Technical Background
GUESSIT’s hybrid infrastructure combines off-chain efficiency for gameplay mechanics with on-chain transparency and security for critical functions:
Code generation and Management
1. AI-Generated Codes
The AI agent, Cipher, autonomously generates secure, random codes for each vault using cryptographic-grade pseudo-random number generation (PRNG). Cipher operates in an isolated, tamper-proof environment to ensure the code remains unknown to anyone, including developers.
2. Code Validation and Proof
The safe code is generated server-side and immediately hashed before being stored. At no point is the code exposed client-side. Even validation occurs entirely on the server, ensuring that only a success or failure response is sent to the UI, without ever revealing the actual code.
3. Autonomy and Integrity
The system is fully autonomous, with no human intervention in the code generation or validation processes. This eliminates potential risks of manipulation.
Off-Chain Gameplay
The core game logic, including player interactions (e.g., guesses and feedback), runs off-chain. This ensures:
Low latency and fast response times for gameplay.
Scalability to handle large numbers of concurrent players.
On-chain Elements
Blockchain integration is reserved for key functions that require transparency and security:
Credit Purchases: All transactions for credits are processed on the Solana blockchain, providing a verifiable trail.
Prize Pool Contributions: 50% of all credit purchases are automatically added to the prize pool.
Payouts: The prize pool is distributed to winners via smart contracts, ensuring trustless execution.
Last updated