cosmos-sdk/x
Emmanuel T Odeke 481569ce4f
fix: all: fix resource leaks found by staticmajor (#13394)
Fixes resource leaks in which a .Close, .Stop method
wasn't invoked in return routes such as with errors.

Found by https://github.com/cosmos/cosmos-sdk/pull/13392
2022-10-06 20:11:40 +00:00
..
auth fix: all: fix resource leaks found by staticmajor (#13394) 2022-10-06 20:11:40 +00:00
authz fix: all: fix resource leaks found by staticmajor (#13394) 2022-10-06 20:11:40 +00:00
bank docs: improve documentation navigation and redirection (#13455) 2022-10-06 15:51:10 +02:00
capability docs: improve documentation navigation and redirection (#13455) 2022-10-06 15:51:10 +02:00
consensus feat!: consensus module (#12905) 2022-10-05 18:06:24 +00:00
crisis docs: improve documentation navigation and redirection (#13455) 2022-10-06 15:51:10 +02:00
distribution docs: improve documentation navigation and redirection (#13455) 2022-10-06 15:51:10 +02:00
epoching docs: improve documentation navigation and redirection (#13455) 2022-10-06 15:51:10 +02:00
evidence docs: improve documentation navigation and redirection (#13455) 2022-10-06 15:51:10 +02:00
feegrant docs: improve documentation navigation and redirection (#13455) 2022-10-06 15:51:10 +02:00
genutil chore: run make format (#13375) 2022-09-24 00:22:03 +02:00
gov fix: all: fix resource leaks found by staticmajor (#13394) 2022-10-06 20:11:40 +00:00
group docs: improve documentation navigation and redirection (#13455) 2022-10-06 15:51:10 +02:00
mint docs: improve documentation navigation and redirection (#13455) 2022-10-06 15:51:10 +02:00
nft docs: improve documentation navigation and redirection (#13455) 2022-10-06 15:51:10 +02:00
params docs: improve documentation navigation and redirection (#13455) 2022-10-06 15:51:10 +02:00
simulation refactor!: extract simulation helpers out of simapp (#13402) 2022-09-27 21:19:44 +02:00
slashing docs: improve documentation navigation and redirection (#13455) 2022-10-06 15:51:10 +02:00
staking docs: improve documentation navigation and redirection (#13455) 2022-10-06 15:51:10 +02:00
upgrade docs: improve documentation navigation and redirection (#13455) 2022-10-06 15:51:10 +02:00
README.md chore: collapse module spec and readme (#13143) 2022-09-05 12:26:40 +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 applications.
  • 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.
  • Epoching - Allows modules to queue messages for execution at a certain block height.
  • Evidence - Evidence handling for double signing, misbehaviour, etc.
  • Feegrant - Grant fee allowances for executing transactions.
  • Governance - On-chain proposals and voting.
  • 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.
  • NFT - NFT module implemented based on ADR43.

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

IBC

The IBC module for the SDK has moved to its own repository.

CosmWasm

The CosmWasm module enables smart contracts, and has its own repository and documentation site.