We're glad to have you want to contribute to this project! This document will help answer common questions you may have during your first contribution. Following these standards demonstrates that you value the time spent by the developers that manage and maintain this open source project.
Read this document before you contribute in any form.
Not all contributions comes in the form of code. Feautures, bug fixes, and documentation are all valid contributions.
In order to create a pull request to contribute, the processes are simple
- Create a new branch. This would be the name of the feature/issue you are working on.
- Install dependencies and start the project locally.
yarn // npm install
yan start // npm run start
- Run tests. Jest tests are setup to run in watch mode.
yarn test // npm run test
- Make your necessary changes and accompany each function with a test.
✨ Thanks for contributing to multichain-crypto-wallet! ✨