cosmos-sdk/x
crStiv 64348183e7
fix: multiple typos of different importance (#24987)
Co-authored-by: User <user@example.com>
Co-authored-by: Alex | Interchain Labs <alex@interchainlabs.io>
2025-07-24 21:22:04 +00:00
..
auth docs: fix misspelled issues (#24985) 2025-07-24 14:48:57 +00:00
authz docs: correct spelling errors across multiple packages (#24982) 2025-07-24 14:51:16 +00:00
bank docs: fix misspelled issues (#24985) 2025-07-24 14:48:57 +00:00
circuit docs: fix duplicate words throughout documentation files (#24981) 2025-07-24 14:46:03 +00:00
consensus feat: Update Cosmos SDK to CometBFT v2 (#24837) 2025-06-04 17:34:20 +00:00
crisis fix(client/v2): add fallbacks when incorrect protos (#24449) 2025-04-09 16:45:14 -04:00
distribution Merge commit from fork 2025-07-08 07:37:16 -07:00
epochs fix(x/epochs): fix register of epoch hooks in InvokeSetHooks (#24770) 2025-05-22 15:44:55 +00:00
evidence feat: Update Cosmos SDK to CometBFT v2 (#24837) 2025-06-04 17:34:20 +00:00
feegrant docs: fix duplicate words throughout documentation files (#24981) 2025-07-24 14:46:03 +00:00
genutil feat: port bls12381 from v0.52.rc2 (#24872) 2025-07-15 22:02:12 +00:00
gov docs: fix duplicate words throughout documentation files (#24981) 2025-07-24 14:46:03 +00:00
group docs: fix typos in documentation files (#24973) 2025-07-23 14:50:08 -04:00
mint feat: Update Cosmos SDK to CometBFT v2 (#24837) 2025-06-04 17:34:20 +00:00
nft docs: lint (#24854) 2025-06-11 10:20:44 -04:00
params docs: correct spelling errors across multiple packages (#24982) 2025-07-24 14:51:16 +00:00
protocolpool docs: fix typos in documentation files (#24973) 2025-07-23 14:50:08 -04:00
simulation feat: Update Cosmos SDK to CometBFT v2 (#24837) 2025-06-04 17:34:20 +00:00
slashing docs: fix typos and clarify wording (#24925) 2025-07-16 15:21:51 +00:00
staking fix: multiple typos of different importance (#24987) 2025-07-24 21:22:04 +00:00
tx fix: multiple typos of different importance (#24987) 2025-07-24 21:22:04 +00:00
upgrade fix: multiple typos of different importance (#24987) 2025-07-24 21:22:04 +00:00
README.md docs: lint (#24854) 2025-06-11 10:20:44 -04:00

sidebar_position
0

List of Modules

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

Essential Modules

Essential modules include functionality that must be included in your Cosmos SDK blockchain. These modules provide the core behaviors that are needed for users and operators such as balance tracking, proof-of-stake capabilities and governance.

  • Auth - Authentication of accounts and transactions for Cosmos SDK applications.
  • Bank - Token transfer functionalities.
  • Circuit - Circuit breaker module for pausing messages.
  • Consensus - Consensus module for modifying CometBFT's ABCI consensus params.
  • Distribution - Fee distribution, and staking token provision distribution.
  • Evidence - Evidence handling for double signing, misbehaviour, etc.
  • Governance - On-chain proposals and voting.
  • Genutil - Genesis utilities for the Cosmos SDK.
  • Mint - Creation of new units of staking token.
  • Slashing - Validator punishment mechanisms.
  • Staking - Proof-of-Stake layer for public blockchains.
  • Upgrade - Software upgrades handling and coordination.

Supplementary Modules

Supplementary modules are modules that are maintained in the Cosmos SDK but are not necessary for the core functionality of your blockchain. They can be thought of as ways to extend the capabilities of your blockchain or further specialize it.

  • Authz - Authorization for accounts to perform actions on behalf of other accounts.
  • Epochs - Registration so SDK modules can have logic to be executed at the timed tickers.
  • Feegrant - Grant fee allowances for executing transactions.
  • ProtocolPool - Extended management of community pool functionality.

Deprecated Modules

The following modules are deprecated. They will no longer be maintained and eventually will be removed in an upcoming release of the Cosmos SDK per our release process.

  • Crisis - Deprecated halting the blockchain under certain circumstances (e.g. if an invariant is broken).
  • Params - Deprecated Globally available parameter store.
  • NFT - Deprecated NFT module implemented based on ADR43. This module will be moved to the cosmos-sdk-legacy repo for use.
  • Group - Deprecated Allows for the creation and management of on-chain multisig accounts. This module will be moved to the cosmos-sdk-legacy repo for legacy use.

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

IBC

The IBC module for the SDK is maintained by the IBC Go team in its own repository.

Additionally, the capability module is from v0.50+ maintained by the IBC Go team in its own repository.

CosmWasm

The CosmWasm module enables smart contracts, learn more by going to their documentation site, or visit the repository.

EVM

Read more about writing smart contracts with solidity at the official evm documentation page.