Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1.87 KB

File metadata and controls

49 lines (32 loc) · 1.87 KB

CONTRIBUTING.md

Contributing to Solana Burner

Thank you for your interest in contributing to the Solana Burner project! I welcome contributions from the community. Please follow the guidelines below to ensure a smooth contribution process.

How to Contribute

  1. Fork the Repository: Start by forking the repository to your own GitHub account.

  2. Clone Your Fork: Clone your forked repository to your local machine.

    git clone https://github.com/meldoner/solana-burner.git
    
  3. Create a Branch: Create a new branch for your feature or bug fix.

    git checkout -b feature/your-feature-name
    
  4. Make Changes: Make your changes in the codebase. Ensure that your code adheres to the project's coding standards.

  5. Test Your Changes: Run tests to verify that your changes work as expected. Ensure that you have all the necessary dependencies installed as listed in requirements.txt.

  6. Commit Your Changes: Commit your changes with a clear and descriptive commit message.

    git commit -m "Add feature: your feature description"
    
  7. Push to Your Fork: Push your changes to your forked repository.

    git push origin feature/your-feature-name
    
  8. Create a Pull Request: Go to the original repository and create a pull request from your branch. Provide a clear description of your changes and why they should be merged.

Coding Standards

  • Follow PEP 8 guidelines for Python code.
  • Write clear and concise commit messages.
  • Ensure your code is well-documented with comments where necessary.

Reporting Issues

If you encounter any issues or bugs, please report them by creating a new issue in the repository. Provide as much detail as possible, including steps to reproduce the issue and any relevant error messages.

Thank You!

I appreciate your contributions and support in making Solana Burner better!