AI-powered GameFi platform on BNB Chain where every game character is an autonomous AI agent with unique personality, emotions, memory, and real-time decision-making.
- Website: saiboyizhan.com
- Network: BSC Mainnet (Chain ID: 56)
Draw cards on-chain with Binance Oracle VRF for provably fair randomness. Collect all 5 types to synthesize and claim rewards from the token prize pool.
- Draw cost: 0.007 BNB per draw
- 5 card types with different probabilities (2% ~ 60%)
- Merge reward: 20% of current token pool
- Auto buyback: 70% of accumulated BNB swaps to SAIBO tokens
Each horse is an autonomous AI agent with its own personality, emotions, and memory. Races are driven by AI decision-making, not pure RNG.
- Frontend: HTML + CSS + JavaScript, Vite
- Blockchain: BSC, ethers.js v6, Binance Oracle VRF
- Wallet: Reown AppKit (MetaMask, OKX, WalletConnect)
- Smart Contracts: Solidity (Hardhat)
- Deployment: Cloudflare Pages
| Contract | Address |
|---|---|
| FuCardGame (VRF) | 0xC39A5cE5F27fcF2B22b301438234f041CE5C8153 |
| SaiboToken | 0x60c8bf4318fb0fe5d99b796463cd32a423ba4444 |
# Install dependencies
npm install
# Start dev server
npm run dev
# Build for production
npm run build
# Deploy
npm run build && npx wrangler pages deploy dist --project-name=gamexi├── index.html # Homepage
├── jifu.html # Fu Card game
├── danianshou.html # Beat Nian Beast (WIP)
├── saima-demo.html # Horse Racing demo
├── src/
│ └── wallet.js # Wallet connection module
├── contracts/
│ ├── FuCardGameVRF.sol # Game contract (production)
│ ├── SaiboToken.sol # ERC20 token
│ └── DEPLOY-GUIDE.md # Deployment guide
├── assets/ # Images, videos, animations
└── vite.config.js
MIT