Skip to content

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-fix

Then open a PR on GitHub targeting the dev branch.

Branch Naming

TypeExample
Featurefeature/wallet-balance
Bug fixfix/relay-timeout
Docsdocs/update-readme

PR Checklist

  • One change per PR
  • Clear description
  • No console errors
  • Works on mobile

Commit Prefixes

feat: new feature
fix: bug fix
docs: documentation
refactor: code cleanup