Skip to content

Latest commit

 

History

History
71 lines (42 loc) · 2.97 KB

CONTRIBUTING.md

File metadata and controls

71 lines (42 loc) · 2.97 KB

Contributing

Welcome! 👋

Hello there, contributor! We're delighted that you're considering contributing to the zksync2-go project. This document is here to guide you through the steps and best practices for contributing to this Golang-based repository.

Please take a moment to review this document to ensure a smooth and efficient contribution process for everyone involved.

Getting Started

  • Fork the repository. Begin by forking the main zksync2-go repository to your personal GitHub account.

  • Clone the repository. After forking, clone the repository to your local machine:

git clone https://github.com/<your-github-username>/zksync2-go.git
  • Create a new branch. Use descriptive names for your branches to help identify the feature, bugfix, or enhancement you're addressing:
git checkout -b feature/description-of-your-feature

Making Changes

  • Write your code. Ensure your code is thoroughly tested and functions as expected. Code must be documented adhering to the official Go commentary guidelines.
  • Compile and test. Before submitting a pull request, ensure your code compiles, passes lint checks, and all tests are successful. You should also write unit tests for your contributions. Use the following command for these checks:
make format
make run-tests
  • Commit your changes. Adhere to the Conventional Commits standard when writing commit messages.

  • Push your changes. Push the changes to your forked repository:

git push origin feature/description-of-your-feature

Submitting a Pull Request

  • Initiate a pull request (PR). Go to the main zksync2-go repository. Your recently pushed branch should be highlighted, showing a "Compare & pull request" button. Click on it and provide a clear, detailed description of your changes in the PR.

  • Await a review. Our maintainers will review your PR. They might request changes or clarifications, so be ready to address any feedback.

Code Style Guide

We follow basic coding style guidelines. Before committing, ensure your code is formatted and lint checks pass:

go fmt ./...

This ensures consistent code style throughout the project and helps identify potential issues early.

Need Assistance?

If you're unsure about something or have questions, don't hesitate to open an issue or initiate a discussion in our zkSync Community Hub. We're here to assist!

What's Next?

Once your PR is approved and merged, your contribution will be integrated into the zksync2-go repository. Congratulations, and thank you! We value your contribution and look forward to future collaborations.

Remember, the best contributions come from enjoying the process, being respectful, and continuously learning. Thanks for being a part of our community!


Last updated: Nov 10, 2023