cosmos-sdk/x
2025-06-20 15:26:30 +00:00
..
auth docs: fix typos in module documentation (#24891) 2025-06-20 15:26:30 +00:00
authz docs: lint (#24854) 2025-06-11 10:20:44 -04:00
bank feat: Update Cosmos SDK to CometBFT v2 (#24837) 2025-06-04 17:34:20 +00:00
circuit docs: lint (#24854) 2025-06-11 10:20:44 -04: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 docs: lint (#24854) 2025-06-11 10:20:44 -04: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 feat: Update Cosmos SDK to CometBFT v2 (#24837) 2025-06-04 17:34:20 +00:00
genutil feat: Update Cosmos SDK to CometBFT v2 (#24837) 2025-06-04 17:34:20 +00:00
gov docs: lint (#24854) 2025-06-11 10:20:44 -04:00
group chore: fix TimeoutCommit confusion (#24853) 2025-06-09 15:53:34 +00: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 feat: Update Cosmos SDK to CometBFT v2 (#24837) 2025-06-04 17:34:20 +00:00
protocolpool docs: lint (#24854) 2025-06-11 10:20:44 -04:00
simulation feat: Update Cosmos SDK to CometBFT v2 (#24837) 2025-06-04 17:34:20 +00:00
slashing feat: Update Cosmos SDK to CometBFT v2 (#24837) 2025-06-04 17:34:20 +00:00
staking docs: correct spelling errors across project documentation (#24890) 2025-06-18 18:03:32 +00:00
tx chore: use newest core (#24878) 2025-06-13 17:04:57 -04:00
upgrade docs: lint (#24854) 2025-06-11 10:20:44 -04: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.