Pull Requests
How to submit your changes.
Workflow
bash
# 1. Create branch from dev
git checkout dev
git pull origin dev
git checkout -b fix/your-fix
# 2. Make changes and commit
git add .
git commit -m "fix: what you fixed"
# 3. Push and create PR
git push origin fix/your-fixThen open a PR on GitHub targeting the dev branch.
Branch Naming
| Type | Example |
|---|---|
| Feature | feature/wallet-balance |
| Bug fix | fix/relay-timeout |
| Docs | docs/update-readme |
PR Checklist
Commit Prefixes
feat: new feature
fix: bug fix
docs: documentation
refactor: code cleanup