Technical Architecture
This document provides an overview of the technical architecture behind the Bettors platform for developers and technically-oriented users.
Technology Stack
Bettors is built using the following technologies:
Frontend:
Next.js - React framework for server-rendered applications
React - UI component library
Tailwind CSS - Utility-first CSS framework
TypeScript - Typed JavaScript
Blockchain Integration:
Solana Web3.js - Solana JavaScript API
Wallet Adapter - Solana wallet connection library
Build Tools:
Bun - JavaScript runtime and package manager
Application Architecture
Bettors follows a modern web application architecture:
Key Components
The application is built around several key components:
Betting Cards: Display information about each prediction and betting options
Bet Popup: Modal interface for placing bets with amount input and multiplier display
Wallet Connection: Integration with Solana wallets for authentication and transactions
Notification System: UI elements to display transaction status and results
Data Flow
Data flows through the application as follows:
Bet Data Retrieval:
API fetches available predictions from the database
Live page displays predictions with current pool information
User Interaction:
User connects wallet and initiates a bet
Bet information (amount, position) is prepared for transaction
Transaction Processing:
Transaction is created with pool transfer and fee instructions
User approves transaction in their wallet
Transaction is sent to the Solana blockchain
Post-Transaction Updates:
UI immediately updates to show bet impact
Database records the user's bet for history tracking
Pool multipliers are recalculated based on new distribution
Smart Contract Integration
Bettors uses direct Solana transfers rather than complex smart contracts:
Bets are recorded as standard SOL transfers to the pool address
A designated fee wallet receives platform fees
Payouts are processed as transfers from the pool to winner wallets
This approach provides several benefits:
Simplified architecture with fewer potential points of failure
Lower transaction fees for users
Faster transaction confirmation times
Security Considerations
The platform implements several security measures:
Client-Side Security:
No private keys are ever stored or processed by the application
All transactions require explicit user approval
Wallet connection is secured using standard Wallet Adapter protocols
Transaction Security:
All transactions include a recent blockhash to prevent replay attacks
Fixed transaction structure with predictable fee calculation
Error handling for failed or declined transactions
Data Integrity:
Bet records are maintained both on-chain (as transactions) and off-chain
Pool calculations are verified against on-chain data
Result determination follows a transparent validation process
Performance Optimization
The application is optimized for performance in several ways:
Next.js Optimizations:
Server-side rendering for faster initial page loads
Static generation where possible
Dynamic imports for code splitting
UI Optimizations:
Minimal re-renders through proper state management
Progressive loading of bet information
Responsive design for different screen sizes
Network Optimization:
Batched API requests
Connection pooling for database queries
CDN distribution of static assets