cosmos-sdk/docs/spec/governance/README.md

29 lines
1.6 KiB
Markdown
Raw Normal View History

2018-02-26 07:07:17 -08:00
# Governance module specification
## Abstract
This paper specifies the Governance module of the Cosmos-SDK, which was first described in the [Cosmos Whitepaper](https://cosmos.network/about/whitepaper) in June 2016.
The module enables Cosmos-SDK based blockchain to support an on-chain governance system. In this system, token holders can vote on proposals on a 1 token 1 vote basis. Next is a list of features the module currently supports:
- **Proposal submission:** Users can submit proposals with a deposit. Once the minimum deposit is reached, proposal enters voting period
- **Vote:** Participants can vote on proposals that reached MinDeposit
- **Inheritance and penalties:** Delegators inherit their validator's vote if they don't vote themselves. If validators do not vote, they get partially slashed.
- **Signal and switch:** If a proposal of type `SoftwareUpgradeProposal` is accepted, validators can signal it and switch once enough validators have signalled.
- **Claiming deposit:** Users that deposited on proposals can recover their deposits if the proposal was accepted OR if the proposal never entered voting period.
Features that may be added in the future are described in [Future improvements](future_improvements.md)
## Contents
1. **[Design overview](overview.md)**
2. **Implementation**
1. **[State](state.md)**
2. **Transactions**
1. [Proposal Submission](proposal_submission.md)
2. [Deposit](deposit.md)
3. [Claim Deposit](claim_deposit.md)
4. [Vote](vote.md)
3. **[Future improvements](future_improvements.md)**