Contributor's Guide
Workflow
1
2
4
Link
Last updated
We moved issue tracking from OnlyDust to GrantFox: https://www.grantfox.xyz/
Contribute to Trustless Work repos with a clean PR flow.
Keep changes small. Keep commits clear. Target develop.
Fork the repo on GitHub.
Clone your fork:
git clone https://github.com/YOUR_USERNAME/REPOSITORY_NAME.git
cd REPOSITORY_NAMEAdd the upstream remote:
git remote add upstream https://github.com/TrustlessWork/REPOSITORY_NAME.gitSync develop:
git checkout develop
git pull upstream developUse main for production. Use develop for ongoing work.
Create a new branch for every change:
git checkout develop
git pull upstream develop
git checkout -b feat/new-featureFeatures: feat/feature-name
Fixes: fix/bug-description
Docs: docs/topic
Refactors: refactor/area
Examples:
feat/escrow-ui
fix/api-timeout
docs/getting-started
refactor/contracts-cleanup
Format:
type: short description (<= 72 chars)Examples:
feat: add escrow approval system
fix: handle API timeout
docs: update README with setup instructions
Common types:
feat: New feature
fix: Bug fix
docs: Documentation update
refactor: Code restructuring
style: Code formatting (no logic changes)
test: Adding or updating tests
build: Changes to build process or dependencies
ci: Changes to CI/CD setup
chore: Miscellaneous updates
Push:
git add .
git commit -m "feat: add escrow approval system"
git push origin feat/new-featureUse these to find work, browse repos, and ask questions.
If you’re blocked, drop a short message in Telegram with your PR link.
Last updated