Skip to main content
This guide outlines our contribution workflow, from creating a branch to submitting a pull request, ensuring a smooth collaboration process.

Workflow

1

Fork & Branch

Fork the repository and create a new branch for your specific feature or fix:
git checkout -b feature/my-new-feature
2

Make Changes

Implement your changes. Ensure you follow the code style enforced by Biome and that all tests pass.
3

Commit

We follow Conventional Commits. Write clear, descriptive messages:
git commit -m "feat(hooks): add useOrderbookSpread hook"
4

Submit PR

Push your branch and open a pull request. Provide a clear description of the problem you are solving.

CI/CD Pipeline

Every push to main or a pull request triggers our automated pipeline to ensure stability.

Need Help?

If you get stuck or find a bug, don’t hesitate to reach out.