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.
develop
Fork the repo on GitHub.
Clone your fork:
git clone https://github.com/YOUR_USERNAME/REPOSITORY_NAME.git cd REPOSITORY_NAME
Add the upstream remote:
git remote add upstream https://github.com/TrustlessWork/REPOSITORY_NAME.git
Sync develop:
git checkout develop git pull upstream develop
Use main for production. Use develop for ongoing work.
main
Create a new branch for every change:
git checkout develop git pull upstream develop git checkout -b feat/new-feature
Features: feat/feature-name
feat/feature-name
Fixes: fix/bug-description
fix/bug-description
Docs: docs/topic
docs/topic
Refactors: refactor/area
refactor/area
Examples:
feat/escrow-ui
fix/api-timeout
docs/getting-started
refactor/contracts-cleanup
Guidelines:
Keep changes small and atomic.
Make sure tests pass (when available).
Follow existing lint/format rules in the repo.
Format:
type: short description (<= 72 chars)
feat: add escrow approval system
fix: handle API timeout
docs: update README with setup instructions
Common types:
feat: New feature
feat
fix: Bug fix
fix
docs: Documentation update
docs
refactor: Code restructuring
refactor
style: Code formatting (no logic changes)
style
test: Adding or updating tests
test
build: Changes to build process or dependencies
build
ci: Changes to CI/CD setup
ci
chore: Miscellaneous updates
chore
Push:
git add . git commit -m "feat: add escrow approval system" git push origin feat/new-feature
Open a Pull Request from your branch into develop.
Include:
What changed and why.
How you tested it.
Screenshots for UI changes (if relevant).
Maintainers will review your PR.
If you get feedback:
Push follow-up commits to the same branch.
Resolve conversations.
Wait for approval and merge.
Use these to find work, browse repos, and ask questions.
GrantFoxarrow-up-right
TrustlessWork on GitHubarrow-up-right
Telegram grouparrow-up-right
If you’re blocked, drop a short message in Telegram with your PR link.
Last updated 2 days ago
Was this helpful?