cosmos-sdk/x
MD Aleem 2154815f4c
x/authz specs (#8499)
* init

* init

* add events

* add state & messages

* WIP

* update Readme

* WIP

* Update x/README.md

Co-authored-by: Alessio Treglia <alessio@tendermint.com>

* Update x/authz/spec/README.md

Co-authored-by: Amaury <amaury.martiny@protonmail.com>

* Update x/authz/spec/02_state.md

Co-authored-by: Amaury <amaury.martiny@protonmail.com>

* Update x/authz/spec/01_concepts.md

Co-authored-by: Amaury <amaury.martiny@protonmail.com>

* review changes

* Update x/authz/spec/01_concepts.md

Co-authored-by: Amaury <amaury.martiny@protonmail.com>

* Update x/authz/spec/02_state.md

Co-authored-by: Amaury <amaury.martiny@protonmail.com>

* Update x/authz/spec/01_concepts.md

Co-authored-by: Cory <cjlevinson@gmail.com>

* Update x/authz/spec/04_events.md

Co-authored-by: Cory <cjlevinson@gmail.com>

* Update x/authz/spec/04_events.md

Co-authored-by: Cory <cjlevinson@gmail.com>

* Update x/authz/spec/README.md

Co-authored-by: Cory <cjlevinson@gmail.com>

Co-authored-by: Alessio Treglia <alessio@tendermint.com>
Co-authored-by: Amaury <amaury.martiny@protonmail.com>
Co-authored-by: Cory <cjlevinson@gmail.com>
2021-02-11 16:56:37 +00:00
..
auth Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
authz x/authz specs (#8499) 2021-02-11 16:56:37 +00:00
bank Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
capability Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
crisis Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
distribution Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
evidence Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
feegrant Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
genaccounts CLI migrate command follow-up: decode & re-encode (#7464) 2020-10-09 19:09:43 +00:00
genutil Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
gov Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
ibc Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
mint Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
params Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
simulation simulation: close opened files and check for error while creating files (#8217) 2020-12-22 13:46:42 +00:00
slashing Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
staking Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
upgrade Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
README.md x/authz specs (#8499) 2021-02-11 16:56:37 +00:00

List of Modules

Here are some production-grade modules that can be used in Cosmos SDK applications, along with their respective documentation:

  • Auth - Authentication of accounts and transactions for Cosmos SDK application.
  • Authz - Authorization for accounts to perform actions on behalf of other accounts.
  • Bank - Token transfer functionalities.
  • Capability - Object capability implementation.
  • Crisis - Halting the blockchain under certain circumstances (e.g. if an invariant is broken).
  • Distribution - Fee distribution, and staking token provision distribution.
  • Evidence - Evidence handling for double signing, misbehaviour, etc.
  • Governance - On-chain proposals and voting.
  • IBC - IBC protocol for transport, authentication adn ordering.
  • IBC Transfer - Cross-chain fungible token transfer implementation through IBC.
  • Mint - Creation of new units of staking token.
  • Params - Globally available parameter store.
  • Slashing - Validator punishment mechanisms.
  • Staking - Proof-of-Stake layer for public blockchains.
  • Upgrade - Software upgrades handling and coordination.

To learn more about the process of building modules, visit the building modules reference documentation.