A production-ready token launchpad that uses FairScale reputation infrastructure to gate token launches. Higher on-chain reputation = better allocations. Sybil-resistant by design.
Bounty Submission: Build Production App Integrating FairScale Reputation Infrastructure ($5,000)
https://fairlaunch.vercel.app (coming soon)
- Token launches require minimum FairScore and tier to participate
- Platinum, Gold, Silver, Bronze tiers unlock different allocations
- Higher tiers get bonus allocation percentages (up to +35%)
- Sybil wallets automatically filtered by FairScale scoring
- Connect wallet → instant FairScore lookup via FairScale API
- Visual score breakdown: on-chain score, social score, sub-metrics
- Tier progress visualization with clear thresholds
- Badge display from FairScale (Diamond Hands, DeFi Degen, etc.)
- Tips to improve your score
- Search any Solana wallet address to see its FairScore
- Useful for projects vetting participants or users comparing scores
- Browse live, upcoming, and completed token launches
- Filter by status, minimum tier requirement, or search by name/tag
- Progress bars showing fundraise completion
- Time remaining countdown for live launches
- Full project information with links
- Tier requirement breakdown with bonus percentages
- Participation flow: check eligibility → enter amount → confirm
- Real-time allocation calculator based on your tier bonus
- Vesting schedule information
FairLaunch integrates FairScale's reputation API at its core:
// Server-side proxy to protect API key
// GET /api/fairscore?wallet=ADDRESS
const res = await fetch(`https://api.fairscale.xyz/score?wallet=${wallet}`, {
headers: { fairkey: process.env.FAIRSCALE_API_KEY },
})User connects wallet
↓
FairScale API returns score + tier
↓
Compare against launch requirements:
- Minimum tier (e.g., Gold = 60+ score)
- Minimum FairScore (e.g., 55)
↓
If eligible:
- Calculate max allocation
- Apply tier bonus (e.g., Gold = +20%)
- Allow participation
If not eligible:
- Show clear messaging
- Suggest ways to improve score
- Sybil Resistance: Bots and farm wallets automatically filtered by low FairScores
- Fair Distribution: Real community members get priority access
- Quality Signaling: Projects attract genuine users, not speculators
- Risk Assessment: Tier-based allocation reduces exposure to bad actors
- Next.js 14 (App Router + Turbopack)
- TypeScript — Full type safety
- Tailwind CSS — Modern, responsive UI
- Solana Wallet Adapter — Phantom, Solflare support
- FairScale API — Reputation scoring
- Recharts — Data visualization
# Clone
git clone https://github.com/Mint-Claw/fairlaunch.git
cd fairlaunch
# Install
npm install
# Configure
cp .env.example .env.local
# Edit .env.local with your FairScale API key
# Run
npm run devVisit http://localhost:3000
Note: The app works without a FairScale API key using mock data for demo purposes.
fairlaunch/
├── src/
│ ├── app/
│ │ ├── page.tsx # Landing page with live launches
│ │ ├── explore/page.tsx # Browse & filter all launches
│ │ ├── launch/[id]/page.tsx # Launch detail + participation
│ │ ├── dashboard/page.tsx # User reputation dashboard
│ │ ├── compare/page.tsx # Side-by-side wallet comparison
│ │ ├── leaderboard/page.tsx # Top wallets ranked by score
│ │ └── api/
│ │ └── fairscore/route.ts # FairScale API proxy (protects key)
│ ├── components/
│ │ ├── navbar.tsx # Responsive nav with score badge
│ │ ├── providers.tsx # Solana + wallet providers
│ │ ├── score-card.tsx # FairScore visualization
│ │ ├── launch-card.tsx # Launch listing card
│ │ ├── error-boundary.tsx # Error handling wrapper
│ │ └── skeleton.tsx # Loading skeletons
│ ├── lib/
│ │ ├── fairscale.ts # FairScale API client & utilities
│ │ ├── mock-launches.ts # Demo launch data
│ │ └── hooks.ts # React hooks (useFairScore)
│ └── types/
│ └── index.ts # TypeScript interfaces
├── .env.example
├── vercel.json
├── next.config.mjs
├── tailwind.config.ts
└── package.json
- Hero with FairScore tier breakdown
- Live launch cards with progress bars
- "How it works" for disconnected users
- Full project info + tier requirements grid
- Participation panel with eligibility check
- Allocation calculator with tier bonuses
- FairScore card with sub-score breakdown
- Tier progress visualization
- Score improvement tips
- Wallet lookup tool
- Top wallets ranked by FairScore
- Transaction count, active days, tier breakdown
- Visual score bars
- Compare up to 4 wallets side by side
- Full metric breakdown table
- Visual score bars for quick comparison
- Real SOL escrow via Anchor smart contract
- On-chain participation records
- Historical FairScore tracking
- Project submission portal
- Notification system for upcoming launches
- Mobile-responsive improvements
- FairScore leaderboard
MIT — Built for the FairScale ecosystem on Solana.
Built with ❤️ for FairScale | fairscale.xyz | Solana