On-chain activity
Twizzin
Twizzin implements a real-time trivia competition platform on Solana where multiple users answer the same questions simultaneously. The system processes correct answers and distributes prizes to winners. Players can participate in general knowledge games or specialized quizzes about Web3 projects. The platform integrates payment functionality for prize pools and includes a matching system to connect players with appropriate skill levels.
Twizzin
Twizzin is a real-time trivia competition platform built on Solana. It operates on a "Learn to Earn" model: players stake SOL or SPL tokens before a game begins, answer a shared set of questions simultaneously, and the highest scorers split the accumulated prize pool. The format blends quiz-show mechanics with on-chain wagering, giving participants a direct financial incentive to demonstrate knowledge.
How It Works
Each Twizzin game is structured as a synchronized event. All participants in a game session receive the same questions at the same time, which removes the latency arbitrage that can distort asynchronous quiz formats. When time runs out, answers are evaluated, scores are tallied, and the smart contract distributes prize funds to winning wallets without a custodial intermediary handling the payout.
The backend logic runs as a Solana program written in Rust using the Anchor framework. Anchor provides a structured programming model for Solana, handling account validation and serialization overhead so the game logic itself is cleaner and more auditable. The smart contract manages entry stakes, tracks participation, and executes prize distribution.
Off-chain game state — questions, answers, and per-player point totals — is stored in a Supabase database. This hybrid design keeps latency-sensitive game data off-chain while reserving the on-chain program for the financial settlement layer, which is where trustless execution actually matters: no one can alter the payout rules mid-game.
The frontend is a Next.js application deployed on Vercel. It connects to both the Supabase database (for game flow) and the user's Solana wallet (for on-chain transactions), presenting the trivia interface in a browser without requiring any native client installation.
Key Features
Real-time simultaneous competition. All players in a session see and answer the same questions within the same time window. This synchronization is central to fairness — there is no advantage from joining early or gaming an asynchronous leaderboard.
SOL and SPL token prize pools. The original version of Twizzin used native SOL for entry stakes and payouts. The refactored backend (referred to in the codebase as twizzin-be-2) extends this to support SPL tokens, Solana's fungible token standard. This means game hosts can denominate prize pools in any SPL-compatible asset, not just SOL, opening the door for project-sponsored competitions funded in their own token.
Expanded player capacity. Alongside SPL token support, the second-generation backend targets increased per-game player capacity compared to the initial implementation, which is a prerequisite for running large-scale public competitions.
Dual-use design: public games and project-sponsored education. Twizzin is designed to serve two audiences. The first is casual players who want to compete for prizes in a straightforward trivia format. The second is blockchain projects looking for an interactive way to educate their communities about their products. A project could sponsor a game with questions specific to its own protocol, fund the prize pool, and benefit from players learning about the project in order to answer correctly. This makes Twizzin a potential marketing and onboarding tool as well as a consumer game.
Crypto-native onboarding. The project explicitly positions itself as an entry point for new Web3 users. Some game content focuses on helping players recognize common risks in the crypto space — phishing, rug pulls, wallet hygiene — framed as educational content with a financial incentive to engage with it.
Solana Ecosystem Fit
Twizzin is an Anchor-native project built specifically for Solana. The choice of Solana is consistent with the use case: real-time trivia demands fast finality and low transaction fees, since every game session involves an on-chain entry and an on-chain payout. Solana's sub-second block times and low per-transaction costs make the economics of small-stake trivia games viable in a way that would be impractical on chains with higher fees or slower confirmation.
The project is open source under the MIT license. The GitHub repository at timknapp12/twizzin has accumulated over 600 commits, indicating sustained development rather than an abandoned proof of concept. The repository is organized into three main directories: twizzin-be (original Anchor program), twizzin-be-2 (the refactored program with SPL token support and higher player capacity), and twizzin-fe (the Next.js frontend).
Team
The primary developer on the GitHub repository is Tim Knapp (timknapp12). The project does not list additional team members in its public documentation, and no founding organization or company is named. The Twitter/X account associated with the project is @twizzinapp.
Tokens and Assets
Twizzin does not have its own native token. Prize pools are denominated in SOL or, in the newer version, any SPL token that a game host chooses to use. There is no staking token, no governance token, and no tokenomic design described in the project's public materials.
Security and Audits
No third-party security audits have been announced or published for Twizzin's smart contracts. The Anchor framework provides structural safety guarantees compared to raw Solana programs — account constraint checking, type-safe deserialization — but this does not substitute for a formal audit. Players should treat the smart contract as unaudited code.
Current Status
The official domain (twizzin.com) resolves but serves minimal content. The Vercel deployment (twizzin.vercel.app) is accessible. The GitHub repository remains active with ongoing development. The project is in development with the second-generation backend (SPL token support, expanded player capacity) still in progress.
Contents
- How It Works
- Key Features
- Solana Ecosystem Fit
- Team
- Tokens and Assets
- Security and Audits
- Current Status
Solana Token Markets