Thank you for considering contributing to our Aiken ZKP Library! Your contributions help advance zero-knowledge proof capabilities on Cardano. Here are some guidelines to help you get started.
If you encounter a bug or have a feature request, please open an issue on GitHub. When reporting issues:
- Provide a clear description of the problem
- Include steps to reproduce the issue
- Specify the version of the library you're using
- Share any relevant error messages or logs
-
Fork the Repository
- Click the 'Fork' button at the top right of the repository page
- This creates your own copy of the repository on GitHub
-
Clone Your Fork
git clone [your-fork-url] cd aiken-zkp
-
Create a Branch
git checkout -b feature-or-fix-description
-
Make Changes
- Implement your changes
- Follow our code style guidelines
- Add tests for new functionality
-
Commit Changes
git commit -m "Description of changes"
-
Push to Your Fork
git push origin feature-or-fix-description
-
Open a Pull Request
- Navigate to the original repository
- Click "New Pull Request"
- Select your fork and branch
- Provide a detailed description of your changes
- Follow existing code patterns and style
- Use meaningful variable and function names
- Comment complex logic or non-obvious implementations
- Keep functions focused and modular
- Add tests for new functionality
- Ensure all existing tests pass
- Run the test suite using:
aiken check
When contributing, please:
- Update README.md if adding new features
- Document new functions and types
- Include examples for new functionality
When implementing or modifying ZKP systems:
- Maintain security guarantees
- Consider on-chain resource constraints
- Follow established cryptographic best practices
- Document any assumptions or limitations
We are committed to providing a welcoming and inclusive environment for all contributors. We expect all participants to:
- Be respectful and considerate
- Welcome newcomers and support learning
- Focus on constructive feedback
- Maintain professional discourse
- All submissions require review before merging
- Reviewers will check for:
- Correctness of ZKP implementations
- Test coverage
- Documentation completeness
- Code style compliance
- Performance considerations
If you have questions about contributing, please:
- Check existing documentation
- Review open and closed issues
Thank you for contributing to the Aiken ZKP Standards Library!