Thank you for being interested in contributing to Aragon! 🎉 We’re excited to have you building this vision with us.
There are many ways to contribute! Some ideas are:
- writing tutorials, blog posts or improving the documentation,
- submitting bug reports,
- submitting feature requests,
- refactoring code,
- or even writing new functionality to incorporate into the project.
All community members are expected to adhere to our community guidelines. Please familiarize yourself with our Terms and Conditions to ensure a welcoming and friendly environment across all our platforms. Adhering to these principles is essential. 💙
Unsure where to begin contributing to Aragon?
You can start with a Good First Issue.
Good first issues are usually for small features, additional tests, spelling / grammar fixes, formatting changes, or other clean up.
Start small, pick a subject you care about, are familiar with, or want to learn.
If you're not already familiar with git or Github, here are a couple of friendly tutorials: First Contributions, Open Source Guide, and How to Contribute to an Open Source Project on GitHub.
Otherwise, you can also contribute through improving our documentation. You can find our documentation within the docs
folder of each of our repositories. If you see something that could be better explained, or if you want to share better resources for each of the topics, we’d love to hear from you. Feel free to either submit a PR directly to the repo or simply register here and we’ll reach out.
If you see a problem, you can report it in our issue tracker (or here).
Please take a quick look to see if the issue doesn't already exist before filing yours.
Do your best to include as many details as needed in order for someone else to fix the problem and resolve the issue.
Some things that help us better understand:
- Device: which device are you using, which version, how old is it, etc
- Browser: which browser are you using, which version..
- Wallet: which wallet do you use to sign transactions
- Network: which network have you been testing on
- Logs: any specific transaction error or log that may support us in reviewing the error
If you find a security vulnerability, do NOT open an issue. Email [email protected] instead.
In order to determine whether you are dealing with a security issue, ask yourself these two questions:
- Can I access or steal something that's not mine, or access something I shouldn't have access to?
- Can I disable something for other people?
If the answer to either of those two questions are "yes", then you're probably dealing with a security issue. Note that even if you answer "no" to both questions, you may still be dealing with a security issue, so if you're unsure, please send a email.
-
Find an issue that you are interested in.
- You may want to ask on the GitHub issue or in our developer channel if anyone has already started working on the issue.
-
Fork and clone a local copy of the repository.
-
Make the appropriate changes for the issue you are trying to address or the feature that you want to add.
-
Push the changes to the remote repository.
-
Submit a pull request to our repository on Github, explaining any changes and further questions you may have.
We kindly ask that every PR follows this format and checks all checkboxes.
## Description ## Type of change ## Checklist [ ] I have selected the correct base branch. [ ] I have performed a self-review of my own code. [ ] I have commented my code, particularly in hard-to-understand areas. [ ] I have made corresponding changes to the documentation. [ ] My changes generate no new warnings. [ ] Any dependent changes have been merged and published in downstream modules. [ ] I ran all tests with success and extended them if necessary. [ ] I have updated the CHANGELOG.md file in the root folder of the package after the [UPCOMING] title and before the latest version. [ ] I have tested my code on the test network.
-
Wait for the pull request to be reviewed by the team.
-
Make adjustments to the pull request if they were requested by the maintainer.
-
Celebrate your success after your pull request is merged! You will be able to claim your POAP for the hard work and join our Developer Inner Circle community.
Disclaimer
It's OK if your pull request is not perfect (no pull request is). The reviewer will be able to help you address any issues and improve it.
Windows users may need to install the windows-build-tools or Windows Subsystems for Linux before installing this project's dependencies.
The documentation on how to run the code locally will be found within the docs
folder of every repository.
You can also access our Developer Portal where you’ll learn about our architecture, how it works, and useful tutorials to get you started.
You can find our documentation Style Guide here.
For the frontends, we use prettier and eslint to automatically lint and format the project.
For the contracts, we use eth-lint and prettier to automatically lint the project.
For the SDK, we use Prettier JS/TS formatter.
Handy npm
scripts (usually npm run lint
) are provided at all levels to help automate these checks.
We generally avoid adding external dependencies if they can be ported over easily, due to numerous NPM-related security issues in the past (e.g. [event-stream](https://blog.npmjs.org/post/180565383195/details-about-the-event-stream-incident)
).
Due to the unconventional release process of smart contracts, this repo utilizes a slightly different flow of git.
The main challenge is that smart contracts should be heavily scrutinized before a release, making the process cumbersome and unlike the release process for "normal" dependencies or apps. See here for a more detailed explanation.
Thus, we use the following convention: any change that can be release immediately, base it on the develop branch.
As next
becomes ready, merge next
onto master
with a rebase.
If you need help, please reach out to Aragon core contributors and community members in our Discord. We'd love to hear from you and know what you're working on!