Skip to content

Latest commit

 

History

History
39 lines (20 loc) · 1.06 KB

CONTRIBUTING.md

File metadata and controls

39 lines (20 loc) · 1.06 KB

Contributing Guidelines

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.

Before you contribute

Read this document before you contribute in any form.

Submitting an Issue

Not all contributions comes in the form of code. Feautures, bug fixes, and documentation are all valid contributions.

Setup

In order to create a pull request to contribute, the processes are simple

  1. Create a new branch. This would be the name of the feature/issue you are working on.

  2. Install dependencies and start the project locally.

yarn // npm install
yan start // npm run start
  1. Run tests. Jest tests are setup to run in watch mode.
yarn test // npm run test
  1. Make your necessary changes and accompany each function with a test.

✨ Thanks for contributing to multichain-crypto-wallet! ✨