Boundless Bounty is an open-source bounty platform built on Stellar that supports all types of Web3 work—not just code. Contributors can earn XLM for design, writing, research, marketing, community management, and development tasks.
Key Features:
- 🎯 Multiple bounty claiming models
- ⚡ Credit-based application system
- 🔐 Passkey wallet integration
- 💰 Smart contract escrow
- 📊 On-chain reputation system
Blockchain:
- Stellar Network
- Soroban Smart Contracts
- smart-account-kit for passkey wallets
Frontend:
- React/Next.js
- TailwindCSS
- Stellar SDK
Backend:
- Node.js/Express
- PostgreSQL
- Redis (caching)
Integrations:
- GitHub OAuth
- KYC providers
- Payment processors
node >= 18.0.0
npm >= 9.0.0# Clone repository
git clone https://github.com/boundlessfi/bounties.git
cd bounty
# Install dependencies
npm install
# Set up environment variables
cp .env.example .env
# Run development server
npm run devAll bounty budgets are locked in Soroban smart contracts until work is approved.
# Unit tests
npm test
# Integration tests
npm run test:integration
# Smart contract tests
npm run test:contracts# Production build
npm run buildWe use ESLint and Prettier:
npm run lint
npm run formatWe welcome contributions! Please see CONTRIBUTING.md for guidelines.
- Frontend components and UI/UX improvements
- API endpoints and services
- Documentation
- Testing and QA
- Bug fixes and security patches
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit changes (
git commit -m 'Add amazing feature') - Push to branch (
git push origin feature/amazing-feature) - Open a Pull Request
GET /api/bounties # List all bounties
GET /api/bounties/:id # Get bounty details
POST /api/bounties # Create bounty (auth required)
PUT /api/bounties/:id # Update bounty (auth required)
DELETE /api/bounties/:id # Delete bounty (auth required)
GET /api/applications # List applications
POST /api/applications # Submit application (auth required)
PUT /api/applications/:id # Update application (auth required)
GET /api/users/:id # Get user profile
PUT /api/users/:id # Update profile (auth required)
GET /api/users/:id/reputation # Get reputation score
Please report security vulnerabilities to security@boundlessfi.xyz. Do not open public issues for security concerns.
- Passkey authentication (WebAuthn)
- Smart contract escrow
- Rate limiting on API endpoints
- Input validation and sanitization
- CORS protection
- SQL injection prevention
cd frontend
npm run test
npm run test:e2eThis project is licensed under the MIT License - see the LICENSE file for details.
- Documentation: docs/
- API Reference: docs/API.md
- Smart Contract Docs: docs/CONTRACTS.md
- Stellar Docs: stellar.org/docs
- Soroban Docs: soroban.stellar.org
- Issues: GitHub Issues
- Discord: Join our server
- Email: dev@boundlessfi.xyz
Built with: