cosmos-sdk/docs/spec
frog power 4000 133934ae37
Merge PR #3243: allow multiple simultaneous redelegations/ubds between same delegator/validator(s) addresses
* remove kv seperation for marshalling

* pending

* cleanup

* cleanup x2

* pending

* working

* minor refactors

* entry structs defined

* uncompiled mechanism written

* add many compile fixes

* code compiles

* fix test compile errors

* test cover passes

* ...

* multiple entries fix

* ...

* more design fix

* working

* fix test cover bug

* Update PENDING.md

* update comment around queue completion for redelegations/ubds

* basic spec updates

* remove ErrConflictingRedelegation

* @cwgoes comments are resolved

* Update x/staking/keeper/slash.go

Co-Authored-By: rigelrozanski <rigel.rozanski@gmail.com>

* address @alexanderbez comments
2019-01-16 05:35:18 -05:00
..
auth Merge PR #2694: Vesting Account(s) Implementation 2019-01-14 17:11:24 +01:00
bank Tags Cleanup & Docs (#3137) 2018-12-19 19:28:38 -08:00
distribution Rename stake/ to staking/ (#3280) 2019-01-11 12:08:01 -08:00
governance Rename stake/ to staking/ (#3280) 2019-01-11 12:08:01 -08:00
ibc Fix IBC paper link 2018-10-09 23:13:37 +02:00
ics Merge PR #2908: Fix file path error 2018-11-28 00:10:12 +01:00
inflation Merge pull request #1819: rational -> decimal 2018-08-14 20:15:02 -04:00
mint Inflation bug fixes (#2982) 2018-12-04 10:17:02 -08:00
other Merge PR #2251: Refactor Bech32 Prefixes and Nomenclature of Validator Pubkey and Operator 2018-09-08 16:44:58 +08:00
params add docs, fix GetSubspace, address comments 2018-10-14 02:44:29 +09:00
slashing R4R: Tombstone Implementation (#3225) 2019-01-10 17:22:49 -08:00
spec-proposals/f1-fee-distribution Merge PR #3216: F1: Add O(1) slashing section 2019-01-07 07:33:13 +01:00
staking Merge PR #3243: allow multiple simultaneous redelegations/ubds between same delegator/validator(s) addresses 2019-01-16 05:35:18 -05:00
store docs/spec: flesh out dir structure and update index 2018-06-16 00:39:15 -07:00
README.md Documentation Structure Change and Cleanup (#2808) 2018-11-14 11:44:17 -08:00

README.md

Specifications

This directory contains specifications for the modules of the Cosmos SDK as well as Interchain Standards (ICS) and other specifications.

SDK applications hold this state in a Merkle store. Updates to the store may be made during transactions and at the beginning and end of every block.

SDK specifications:

  • Store - The core Merkle store that holds the state.
  • Bech32 - Address format for Cosmos SDK applications.

Modules specifications:

  • Auth - The structure and authentication of accounts and transactions.
  • Bank - Sending tokens.
  • Governance - Proposals and voting.
  • Staking - Proof-of-stake bonding, delegation, etc.
  • Slashing - Validator punishment mechanisms.
  • Distribution - Fee distribution, and staking token provision distribution .
  • Inflation - Staking token provision creation
  • IBC - Inter-Blockchain Communication (IBC) protocol.

Interchain standards

  • ICS30 - Signed messages standard.

For details on the underlying blockchain and p2p protocols, see the Tendermint specification.