Governance
For details about authority, Core Team structure, and decision-making, see Governance.Contribution workflow
For community contributors
- Fork the visualsign-parser repository
- Create a feature branch from
main - Make your changes following the code style and practices in this project
- Sign the Contributor License Agreement (CLA) if this is your first contribution. The CLA check will prompt you with instructions if needed.
- Submit a pull request with a clear description of your changes
- Wait for Core Team review. A Core Team member will review and approve your PR before it can be merged.
For Core Team members
Core Team members can review, approve, and merge PRs from community contributors and other Core Team members. Follow the same PR workflow but with merge authority.PR guidelines
- Clear description: Explain what problem your PR solves and how it solves it
- Test coverage: Include tests for new functionality
- Code style: Follow existing code conventions in the repository
- One concern per PR: Keep PRs focused on a single feature or bug fix
Code standards
Before submitting, ensure your code passes all checks:- Format your code using rustfmt
- Address all linter warnings
- Ensure all tests pass
- No breaking changes without discussion
Building OCI containers
This repository uses StageX to build OCI containers.Requirements
- Docker Desktop 26 or later with containerd enabled (Settings then “Use containerd for pulling and storing images”)
- Linux: Add to
/etc/docker/daemon.json:
Build commands
Questions or issues
If you have questions about the contribution process, reach out to the Core Team through the repository issue tracker.Type-specific guides
Depending on what you’re contributing, see:- Adding a visualization for your DApp or protocol: Contributing a Visualization
- Adding support for a new blockchain: Adding a New Chain
- Improving the core parser: Best Practices and Project Structure