Skip to main content

Contribute to Bee

Contribute to Bee

This document describes how to contribute to Bee.

We encourage everyone with knowledge of IOTA technology to contribute.

Thanks!

Do You Have a Question?

If you have a general or technical question, you can use one of the following resources instead of submitting an issue:

  • Developer documentation: For official information about developing with IOTA technology.
  • Discord: For real-time chats with the developers and community members.
  • IOTA cafe: For technical discussions with the Research and Development Department at the IOTA Foundation
  • StackExchange: For technical and troubleshooting questions.

Contributing

To contribute to Bee on GitHub, you can:

  • Report a bug.
  • Suggest a new feature.
  • Build a new feature.
  • Join the Bee Initiative.

Report a Bug

This section guides you through reporting a bug. Following these guidelines helps maintainers, and the community understand the bug, reproduce the behavior, and find related bugs.

Before reporting a bug

Please check the following list:

  • Do not open a GitHub issue for security vulnerabilities. Instead, please contact us at security@iota.org.

  • Ensure the bug was not already reported by searching on GitHub under Issues. If the bug has already been reported, and the issue is still open, add a comment to the existing issue instead of opening a new one.

info

If you find a Closed issue that seems similar to what you're experiencing, open a new issue and include a link to the original issue in the body.

Submitting a bug report

To report a bug, open a new issue, and be sure to include as many details as possible, using the template.

If you also want to fix the bug, submit a pull request and reference the issue.

info

You don't need to open an issue for minor changes such as typos, but you can if you want.

Suggest a New Feature

This section guides you through suggesting a new feature. Following these guidelines helps maintainers, and the community collaborate to find the best possible way forward with your suggestion.

Before suggesting a new feature

Ensure the feature has not already been suggested by searching on GitHub under Issues.

Suggesting a new feature

To suggest a new feature, talk to the IOTA community and IOTA Foundation members in the #bee-discussion channel on Discord.

Or, you can submit an official Request for Comments (RFC).

Build a New Feature

This section guides you through building a new feature. Following these guidelines helps give your feature the best chance of being approved and merged.

Before building a new feature

Make sure to discuss the feature in the #bee-discussion channel on Discord.

Otherwise, your feature may not be approved at all.

Building a new feature

To build a new feature, check out a new branch based on the master branch, and be sure to document any public-facing APIs, using Rust code comments.

Join the Bee Initiative

The Bee Initiative is a collaborative effort to improve the Bee developer experience by focussing on the following goals:

  • Quality Assurance and Quality Control
  • Documentation
  • Benchmarks
  • RFCs
  • Node usability
  • Improvements to modules and libraries

How Much Time Should I Invest?

You can invest as much, or as little, time as you want into the initiative.

What's in it for You?

In return for your time, you will get to be a part of the future of IOTA technology. As well, you will also be given a badge on Discord to show others that you are a valuable member of the IOTA community.

How to Join

If you're interested in joining, drop us a line in the #experience channel on Discord.

Pull Requests

This section guides you through submitting a pull request (PR). Following these guidelines helps give your PR the best chance of being approved and merged.

Before Submitting a Pull Request

Before submitting a pull request, please follow these steps to have your contribution considered by the maintainers:

  • A pull request should have exactly one concern (for example one feature or one bug). If a PR addresses more than one concern, it should be split into two or more PRs.

  • A pull request can be merged only if it references an open issue.

info

You don't need to open an issue for minor changes such as typos.

  • All public interfaces should have descriptive documentation, including an example that compiles and passes the documentation tests.

  • All instances of unsafe should have a comment that explains why its use was unavoidable.

  • All code should be well tested, using unit and integration tests.

  • Code must compile and pass our continuous integration tests.

  • To be compatible with the guidelines of the Eclipse foundation, all code must be licensed under the Apache License, Version 2.0. This license must be referenced in every crate of the workspace (add [./LICENSE] to the crate's top level directory). For Rust crates, every Cargo.toml must contain the line license = "Apache-2.0".

Submitting a Pull Request

The following is a typical workflow for submitting a new pull request:

  1. Fork this repository.
  2. Create a new branch based on your fork. For example, git checkout -b fix/my-fix or git checkout -b feat/my-feature.
  3. Run the rustfmt command to make sure your code is properly formatted.
  4. Commit changes and push them to your fork.
  5. Target your pull request to be merged with master.

If all status checks pass, and the maintainer approves the PR, your changes will be merged.

info

Reviewers may ask you to complete additional work, tests, or other changes before your pull request can be approved and merged.

Code of Conduct

This project and everyone who participate in it is governed by the IOTA Code of Conduct.