First of all, thank you for taking your time to contribute to ink!
We are a friendly and welcoming open source community. You can find our code of conduct here.
Please follow our simple commit style guidelines.
- Prepend all commits with a topic.
Available topics are:
[storage]
For changes toink_storage
.[env]
For changes toink_env
.[lang]
For changes toink_lang
.[allocator]
For changes toink_allocator
.[metadata]
For changes toink_metadata
.[prelude]
For changes toink_prelude
.[primitives]
For changes toink_primitives
.[ci]
For changes to the continuous integration.[chores]
For general non-technical changes.[examples]
For changes to the examples.
For other purposes and sections please try to find a good fit for the topic.
Below is a checklist for you before doing a pull request. Following these will ensure that your pull request is going to be accepted.
- Run
rustfmt
automatically. - Run
clippy
on your changes. - Run tests via
cargo test --release
for off-chain testing. - For critical parts perform some manual on-chain tests.
- Build the code and run tests also for the
wasm32
target. - Try to run some examples and see if they are still working correctly.
- Sometimes clippy lints can be unfortunate or even buggy and it can be very hard to fix those.
In these situations you may skip the clippy lint with
#[clippy::skip]
, however, note that this always requires a good rational as a side-comment and probably link to the eventual clippy bug. - Important Strive for simple, clean and concise code. If your code is very complex - because it is trying to accomplish complex things - try to think about how another aproach or design could simplify it.
- We won't accept a pull request with
FIXME
orTODO
comments in it. Please try to fix them by yourself and resolve all remaining to-do items. If that is not possible then write an issue for each of them and link to the source line and commit with a proper description. For more information go here. - Document everything properly that you have written, refactored or touched. Especially keeping documentation up-to-date is very important. For larger portions please try to also update the ink! wiki or write a new entry there.
- Write tests for your code. If your code is hard to test, try to find a design that allows for testing.
- If needed also update the
README
. - For performance critical parts we also want additional performance tests.
- If you implement a fix for a reported bug also include a regression test alongside the fix if possible.
- When commenting or documenting code make use of proper punctuation. This might seem pedantic but we believe that in essence this is going to improve overall comment and documentation quality.
- If possible try to sign your commits, e.g. using GPG keys. For more information about this go here.
Our continuous integration (CI) will check for the following properties of all changes.
- Does the code still compile?
- Is
rustfmt
happy with it? - Is
clippy
and all its enabled lints happy with it? - Are tests in debug mode passing?
Are tests in release mode passing?- Is the test code coverage increasing or at least stable?
- Is the
wasm-32
target still compiling?
Only if our very demanding CI is happy with your pull request we will eventually merge it. Exceptions confirm the rule!
Please always respect our code of conduct when writing issues and pull requests or taking part in any kind of discussion.
You want to write an issue if you have a
- feature request
- bug report
- technical question
about the ink! project.
Please use GitHub's search functionality to see if the question has already been asked, the feature has already been proposed or the bug has already been reported.
Make use of the accompanied issue template.
Before working on a pull request please make sure that the work has not already been made, e.g. by another pull request solving the same thing.
For complex implementations you are advised to first discuss the feature implementation or bug fix using an issue.
A pull request should be doing or implementing exactly one semantic issue. So for example, when you refactor the code base in a pull request you should not also include code formattings into the same pull request.
For a nice list of hints visit this link.
For questions about the ink! project, about Parity Technologies or general technical related questions you are welcome to contact us via Riot. For technical questions specifically about the ink! and its sub-projects you may also file an issue. For more information about filing issues go here.