A decentralized bounty and task marketplace built on the Stellar network. Project owners post bounties funded with XLM; contributors claim and complete them; Soroban smart contracts handle escrow and payouts trustlessly.
Status: Early development — contributors welcome. Browse open issues to get started.
apps/
frontend/ Next.js 14 · TypeScript · Tailwind CSS
backend/ NestJS · TypeScript · REST API
contracts/ Soroban smart contracts · Rust
| Tool | Version |
|---|---|
| Node.js | 20+ |
| Rust + cargo | stable |
| wasm32 target | rustup target add wasm32-unknown-unknown |
| Stellar CLI | cargo install --locked stellar-cli |
# 1. Clone
git clone https://github.com/BountyOnChain/StellarBounty.git
cd StellarBounty
# 2. Install JS dependencies (frontend + backend)
npm install
# 3. Copy env and fill in values
cp .env.example .env# Frontend — http://localhost:3000
npm run dev:frontend
# Backend — http://localhost:4000
npm run dev:backendcd apps/contracts
# Build WASM
cargo build --target wasm32-unknown-unknown --release
# Run tests
cargo test| Variable | Description |
|---|---|
DATABASE_URL |
PostgreSQL connection string |
JWT_SECRET |
Secret for signing JWTs |
STELLAR_NETWORK |
testnet or mainnet |
NEXT_PUBLIC_API_URL |
Backend URL used by the frontend |
- Browse open issues — issues tagged
good first issueare a great starting point. - Fork the repo and create a branch:
git checkout -b feat/your-feature - Make your changes and open a pull request referencing the issue.
MIT