yun-yeo / aip

Aave Improvement Proposals

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


đź‘‹ Hey there! You're currently viewing this on Github, which isn't the intended experience. For the full Aave AIP experience, go to the AIPs website

Contributing

If you plan to add a new Aave Improvement Proposal (AIP) follow this guide:

  1. Fork this repository by clicking 'Fork' in the top right.
  2. Add your AIP to your fork of the repository in the content/aips/ directory. Use the AIP template.
  3. Install the project dependencies: npm install. Note the repository works with Node v12.
  4. Generate the AIP identifier using the following command: npm run generate-filename '[title]' '[date]'. Replace the title and date placeholders with the title and created tags of the AIP md file.
  5. Use the generated identifier for the AIP filename. The final name of the AIP file should be: [generated_identifier]-AIP-[title_abbrev].md.
  6. Submit a Pull Request (PR) to the Pending AIPs branch.

Your first PR should be a draft of the final AIP. It must follow the formatting criteria enforced by the build, as detailed in the AIP template. Make sure you include a discussions-to header with the URL to a discussion forum or open GitHub issue where people can discuss the AIP as a whole.

If your AIP requires images, the image files should be included in a subdirectory of the assets folder for that AIP as follow: assets/[generated_identifier]-AIP-[title_abbrev] (for AIP [generated_identifier]-AIP-[title_abbrev]). When linking to an image in the AIP, use relative links such as ../assets/[generated_identifier]-AIP-[title_abbrev]/image.png.

When you believe your AIP is mature and ready to progress past the WIP phase, feel free to change its status to Proposed.

Contribution example

Let's imagine we believe a parameter of the AAVE reserve should be changed for the common good of the community, in particular, an increase of the liquidation bonus. If we propose the change to the community and consensus is reached, we will make this happen.

First of all, an Aave Request for Comment (ARC) had to be initiated in the Governance Forum, so the community can participate and provide feedback. Here you can find instructions about it.

If the community is aligned with our change proposal, we can start working on the AIP. There is an example of the AIP at the sample-aip branch and the Pull Request (PR) to the Pending AIPs branch that it is needed to be done.

And Voila, we have created our AIP for the proposal!

Now it's time to prepare everything for the proposal submission. Some AIPs are more sophisticated than others, so need tests and even some contract code. In this case, we would just need to prepare the call to the Governance contract with adequate parameters, which can be done with a Payload contract or directly using calldatas. We recommend using a Payload contract since it is much more clarifying, transparent and less error-prone than calldatas.

Here you can find two examples of Payload contracts:

Note: If the proposal is an asset listing here you have some helpful docs about the process to follow.

Once all is ready for the proposal, submit the proposal to Aave Governance.

AIP Statuses

  • WIP - an AIP that is still being developed.
  • Proposed - an AIP that is ready to be proposed on-chain.
  • Approved - an AIP that has been accepted for implementation by the Aave community.
  • Implemented - an AIP that has been released to mainnet.
  • Rejected - an AIP that has been rejected.

About

Aave Improvement Proposals

License:GNU Affero General Public License v3.0


Languages

Language:JavaScript 63.4%Language:Sass 36.3%Language:Shell 0.2%