cosmos-sdk/docs/spec/README.md

30 lines
1.5 KiB
Markdown
Raw Normal View History

# Specifications
2018-02-11 09:15:15 -08:00
This directory contains specifications for the modules of the Cosmos SDK as well as Interchain Standards (ICS) and other specifications.
2018-02-11 09:15:15 -08:00
SDK applications hold this state in a Merkle store. Updates to
2018-06-16 17:31:26 -07:00
the store may be made during transactions and at the beginning and end of every
block.
## SDK specifications
- [Store](./store) - The core Merkle store that holds the state.
2019-05-17 06:24:24 -07:00
- [Bech32](./addresses/bech32.md) - Address format for Cosmos SDK applications.
## Modules specifications
2019-11-06 02:01:05 -08:00
- [Auth](../../x/auth/spec) - The structure and authentication of accounts and transactions.
2019-10-11 07:18:21 -07:00
- [Bank](../../x/bank/spec) - Sending tokens.
- [Governance](../../x/gov/spec) - Proposals and voting.
2019-10-11 07:18:21 -07:00
- [Staking](../../x/staking/spec) - Proof-of-stake bonding, delegation, etc.
- [Slashing](../../x/slashing/spec) - Validator punishment mechanisms.
- [Distribution](../../x/distribution/spec) - Fee distribution, and staking token provision distribution.
- [Crisis](.../../x/crisis/spec) - Halting the blockchain under certain circumstances.
- [Mint](../../x/mint/spec) - Staking token provision creation.
- [Params](../../x/params/spec) - Globally available parameter store.
- [Supply](../../x/supply/spec) - Total supply of the chain.
- [NFT](https://github.com/cosmos/modules/tree/master/incubator/nft/docs/spec) - Non-fungible tokens.
2018-02-11 09:15:15 -08:00
2018-06-16 17:31:26 -07:00
For details on the underlying blockchain and p2p protocols, see
the [Tendermint specification](https://github.com/tendermint/tendermint/tree/master/docs/spec).