Skip to content

Mainnet-ops/Stellar-Dex-Chat

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1,033 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Contributing

Branch Naming

Branches follow this pattern: //

<type> is one of:

  • feat/ — new feature
  • fix/ — bug fix
  • chore/ — maintenance, tooling, dependencies
  • docs/ — documentation only
  • refactor/ — code change that isn't a fix or a feature
  • test/ — adding or fixing tests

If your branch addresses one or more issues, include the issue number(s) in the description: feat/issues-986-987-988-frontend-accessibility

fix/issue-966-fee-calculation-overflow

Commit Message Format

Commits follow Conventional Commits: ():

<type> must be one of:

  • feat — new feature
  • fix — bug fix
  • docs — documentation only
  • style — formatting, no code meaning change
  • refactor — code change that isn't a fix or a feature
  • perf — performance improvement
  • test — adding or fixing tests
  • build — build system or dependencies
  • ci — CI configuration
  • chore — anything else maintenance-related
  • security — security fix

<scope> is optional and usually the area touched, e.g. frontend, contract.

Reference issue numbers in the description when relevant: feat(frontend): add CSV export button to AuditTable

fix(contract): integer overflow in fee calculation for large deposits #966

docs: add CONTRIBUTING.md with branch and commit conventions

A breaking change is marked with ! after the type/scope: feat(contract)!: change withdrawal function signature

Pull Request Checklist

Before opening a PR:

  • Branch name follows the format above
  • Commit messages follow the format above
  • PR description links the issue(s) it closes (Closes #123)
  • npx lint-staged runs clean (this also runs automatically on commit)
  • Tests pass locally
  • No unrelated files included in the diff

About

No description, website, or topics provided.

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • TypeScript 55.9%
  • Rust 21.2%
  • HTML 19.8%
  • Python 2.3%
  • CSS 0.4%
  • Shell 0.3%
  • JavaScript 0.1%