# YIPS **Repository Path**: jjhoc/YIPS ## Basic Information - **Project Name**: YIPS - **Description**: The YFIII Improvement Proposal repository - **Primary Language**: Unknown - **License**: CC0-1.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2020-12-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # YIPs [![Discord](https://img.shields.io/discord/734804446353031319.svg?color=768AD4&label=discord&logo=https%3A%2F%2Fdiscordapp.com%2Fassets%2F8c9701b98ad4372b58f13fd9f65f966e.svg)](https://discordapp.com/channels/734804446353031319/) [![Telegram](https://img.shields.io/badge/chat-on%20Telegram-blue.svg)](https://t.me/yearnfinance) [![Twitter Follow](https://img.shields.io/twitter/follow/iearnfinance.svg?label=iearnfinance&style=social)](https://twitter.com/iearnfinance) YFII Improvement Proposals (YIPs) describe standards for the YFII platform, including core protocol specifications, client APIs, and contract standards. # Contributing 1. Review [YIP-0](YIPS/yip-0.md). 2. Fork the repository by clicking "Fork" in the top right. 3. Add your YIP to your fork of the repository. There is a [template YIP here](yip-X.md). 4. Submit a Pull Request to YFII's [YIPs repository](https://github.com/iearn-finance/YIPS/). Your first PR should be a first draft of the final YIP. It must meet the formatting criteria enforced by the build (largely, correct metadata in the header). An editor will manually review the first PR for a new YIP and assign it a number before merging it. Make sure you include a `discussions-to` header with the URL to a new thread on [gov.yearn.finance](https://gov.yearn.finance/) where people can discuss the YIP as a whole. If your YIP requires images, the image files should be included in a subdirectory of the `assets` folder for that YIP as follow: `assets/yip-X` (for yip **X**). When linking to an image in the YIP, use relative links such as `../assets/yip-X/image.png`. When you believe your YIP is mature and ready to progress past the WIP phase, you should ask to have your issue added to the next governance call where it can be discussed for inclusion in a future platform upgrade. If the community agrees to include it, the YIP editors will update the state of your YIP to 'Approved'. # YIP Statuses * **WIP** - a YIP that is still being developed. * **Proposed** - a YIP that is ready to be reviewed in a governance call. * **Approved** - a YIP that has been accepted for implementation by the YFII community. * **Implemented** - a YIP that has been released to mainnet. * **Rejected** - a YIP that has been rejected. # Validation YIPs must pass some validation tests. The YIP repository ensures this by running tests using [html-proofer](https://rubygems.org/gems/html-proofer) and [yip_validator](https://rubygems.org/gems/yip_validator). It is possible to run the YIP validator locally: ``` gem install yip_validator yip_validator ```