cosmos-sdk/x
Andrei Ivasko d37c590e90
Limit context background (#8093)
* limit context background

* update

* fixed minor issues

* fixed TestStatusCommand

* Fix keyring import from older versions. (#8436)

Co-authored-by: Alessio Treglia <alessio@tendermint.com>
Co-authored-by: sahith-narahari <sahithnarahari@gmail.com>

* Add changelog (#8490)

* fix: tendermint subcommands should not create missing files (#8481)

If the user specifies an incorrect `--home`, then the old behaviour
would automatically populate it with fresh values, but we should
fail instead.

* limit context background

* update

* fixed minor issues

* fixed TestStatusCommand

* statik.go

* replaced static.go

Co-authored-by: Jonathan Gimeno <jgimeno@gmail.com>
Co-authored-by: Alessio Treglia <alessio@tendermint.com>
Co-authored-by: sahith-narahari <sahithnarahari@gmail.com>
Co-authored-by: Michael FIG <mfig@agoric.com>
2021-02-03 09:47:25 +00:00
..
auth Limit context background (#8093) 2021-02-03 09:47:25 +00:00
authz Refactor store keys for variable-length addresses (#8363) 2021-02-01 13:17:44 +00:00
bank Limit context background (#8093) 2021-02-03 09:47:25 +00:00
capability Update gogo proto deps with v1.3.2 security fixes (#8350) 2021-01-15 19:45:34 +00:00
crisis Update gogo proto deps with v1.3.2 security fixes (#8350) 2021-01-15 19:45:34 +00:00
distribution Limit context background (#8093) 2021-02-03 09:47:25 +00:00
evidence fix bech32 prefix in evidence (#8461) 2021-01-29 20:05:24 +00:00
feegrant Refactor store keys for variable-length addresses (#8363) 2021-02-01 13:17:44 +00:00
genaccounts CLI migrate command follow-up: decode & re-encode (#7464) 2020-10-09 19:09:43 +00:00
genutil Rosetta API implementation (#7695) 2021-01-21 09:33:02 +00:00
gov Limit context background (#8093) 2021-02-03 09:47:25 +00:00
ibc Limit context background (#8093) 2021-02-03 09:47:25 +00:00
mint Limit context background (#8093) 2021-02-03 09:47:25 +00:00
params Limit context background (#8093) 2021-02-03 09:47:25 +00:00
simulation simulation: close opened files and check for error while creating files (#8217) 2020-12-22 13:46:42 +00:00
slashing Limit context background (#8093) 2021-02-03 09:47:25 +00:00
staking Limit context background (#8093) 2021-02-03 09:47:25 +00:00
upgrade Limit context background (#8093) 2021-02-03 09:47:25 +00:00
README.md docs: improve IBC guide (#6472) 2020-07-07 06:19:36 -04: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.
  • 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.