├── .github └── ISSUE_TEMPLATE │ ├── new-1ip.md │ └── new-1lp.md ├── 1LPs └── 1lp-1.md ├── LICENSE.md └── README.md /.github/ISSUE_TEMPLATE/new-1ip.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 1inch Improvement Proposal 3 | about: 1inch Improvement Proposal 4 | title: "Improvement Description goes here" 5 | labels: improvement 6 | assignees: '' 7 | 8 | --- 9 | 10 | 1ip: 1 11 | title: 1inch Liquidity Proposal concepts and terminologies 12 | status: Draft 13 | type: Information 14 | author: 1inch Network team 15 | created: 2020-12-25 16 | 17 | --- 18 | 19 | In this very first 1IP, we formally define the core concepts and terminologies of 1inch Government to set a common ground for 1inch community. The definitions here will be used as the truth (not assumption) in every discussion of the DAO. 20 | 21 | ## Copyright 22 | 23 | Copyright and related rights waived via [CC0](https://creativecommons.org/publicdomain/zero/1.0/). 24 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-1lp.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: 1inch Listing Proposal 3 | about: Listing Proposal for new tokens 4 | title: "1inch Listing Proposal for {XXX}" 5 | labels: listing 6 | assignees: '' 7 | 8 | --- 9 | 10 | 1lp: 1 11 | title: 1inch Listing Proposal for {XXX} 12 | status: Draft 13 | type: Listing 14 | author: 1inch team 15 | created: 2020-12-25 16 | 17 | --- 18 | 19 | ``` 20 | voting_option_titles: "Accept", "Reject" 21 | ``` 22 | 23 | ## Summary: 24 | 25 | 1inch Network is exploring the listing of the following ERC-20 token and the corresponding reserves: [link to token](). 26 | 27 | Token: [link to token](). 28 | 29 | As a part of 1inch Liquidity Protocol approach of progressive decentralization and our long-term plan to transfer more control to the $1INCH stakeholders, token listing decisions - ‘Approve’ or ‘Reject’ - will be undertaken by the $1INCH stakers members. 30 | 31 | ## Motivation: 32 | 33 | To gain approval to support the specified asset:. 34 | 35 | 1ip is part of 1inch’s commitment towards transparency and community engagement while on the path of progressive decentralization. 36 | 37 | ## Methodology: 38 | 39 | Any new token or reserve listing requires approval from 1inch Government members and liquidity support from the token team/liquidity provider. 40 | 41 | Tokens have to be ERC-20 tokens based on Ethereum and each 1ip campaign on 1inch.exchange will last 4 days. 42 | 43 | There is **no guarantee that approved tokens or reserves will be listed** even after they are approved by the 1inch Government, since liquidity still needs to be sourced for that token. A token needs at least 1 reserve to be set up to support it. There could also be unforeseen circumstances that result in a listing delay. 44 | 45 | To help 1inch Government members in the decision-making process, here is a quick summary of each token: 46 | 47 | ### TOKEN (Description) 48 | -------------------------------------------------------------------------------- /1LPs/1lp-1.md: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | 1lp: 1 4 | title: 1inch Listing Proposal for {XXX} 5 | status: Active 6 | type: Listing 7 | author: 1inch team 8 | created: 2020-12-25 9 | 10 | --- 11 | 12 | ``` 13 | voting_option_titles: "Accept", "Reject" 14 | ``` 15 | 16 | ## Summary: 17 | 18 | 1inch Network is exploring the listing of the following ERC-20 token and the corresponding reserves: [link to token](). 19 | 20 | Token: [link to token](). 21 | 22 | As a part of 1inch Liquidity Protocol approach of progressive decentralization and our long-term plan to transfer more control to the $1INCH stakeholders, token listing decisions - ‘Approve’ or ‘Reject’ - will be undertaken by the $1INCH stakers members. 23 | 24 | ## Motivation: 25 | 26 | To gain approval to support the specified asset:. 27 | 28 | 1ip is part of 1inch’s commitment towards transparency and community engagement while on the path of progressive decentralization. 29 | 30 | ## Methodology: 31 | 32 | Any new token or reserve listing requires approval from 1inch Government members and liquidity support from the token team/liquidity provider. 33 | 34 | Tokens have to be ERC-20 tokens based on Ethereum and each 1ip campaign on 1inch.exchange will last 4 days. 35 | 36 | There is **no guarantee that approved tokens or reserves will be listed** even after they are approved by the 1inch Government, since liquidity still needs to be sourced for that token. A token needs at least 1 reserve to be set up to support it. There could also be unforeseen circumstances that result in a listing delay. 37 | 38 | To help 1inch Government members in the decision-making process, here is a quick summary of each token: 39 | 40 | ### TOKEN (Description) 41 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019-2021 1inch 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | README.MD 2 | ![1inch.exchange](https://1inch.exchange/assets/images/logo.svg) 3 | # 1inch Improvement Proposals (1IPs) 4 | 5 | The 1inch Improvement Proposal (1IP) repository is where users can openly propose and discuss possible improvements to the 1inch protocol and governance, as well as request for new features and bug fixing. It also exists as a place to share concrete proposals with potential users and the community at large. 6 | 7 | Everyone is welcome to submit their ideas by proposing a 1IP [following the template provided](https://github.com/1inch-exchange/1IPs/issues/new/choose), and participate in relevant discussions. You may also use this repository to track the ongoing status of all the 1IPs. 1inch would **support and reward** those who create solid and implementable 1lPs which contribute to our growth. --------------------------------------------------------------------------------