cosmos-sdk/x
Alvarez d201ca9ae4
docs: fix typos and wording across SDK documentation READMEs (#25696)
Co-authored-by: Alex | Cosmos Labs <alex@cosmoslabs.io>
2025-12-17 17:12:11 +00:00
..
auth docs: fix typos and wording across SDK documentation READMEs (#25696) 2025-12-17 17:12:11 +00:00
authz chore: bump linter (#25537) 2025-11-03 11:30:03 -05:00
bank fix: spelling/grammar across docs and tooling (#25677) 2025-12-12 00:01:30 +00:00
consensus docs(consensus): enhance README with comprehensive module documentation (#25300) 2025-10-08 18:31:38 +00:00
distribution fix: spelling/grammar across docs and tooling (#25677) 2025-12-12 00:01:30 +00:00
epochs feat: OpenTelemetry configuration and BaseApp instrumentation (#25516) 2025-12-10 23:15:18 +00:00
evidence feat: OpenTelemetry configuration and BaseApp instrumentation (#25516) 2025-12-10 23:15:18 +00:00
feegrant docs: fix typos and wording across SDK documentation READMEs (#25696) 2025-12-17 17:12:11 +00:00
genutil feat: OpenTelemetry configuration and BaseApp instrumentation (#25516) 2025-12-10 23:15:18 +00:00
gov docs: fix typos and wording across SDK documentation READMEs (#25696) 2025-12-17 17:12:11 +00:00
mint feat: OpenTelemetry configuration and BaseApp instrumentation (#25516) 2025-12-10 23:15:18 +00:00
params docs: fix typos and wording across SDK documentation READMEs (#25696) 2025-12-17 17:12:11 +00:00
protocolpool feat: OpenTelemetry configuration and BaseApp instrumentation (#25516) 2025-12-10 23:15:18 +00:00
simulation refactor: bring cometbft back to v0.38.x family (#25285) 2025-08-29 15:58:04 -04:00
slashing fix: spelling/grammar across docs and tooling (#25677) 2025-12-12 00:01:30 +00:00
staking docs: fix typos and wording across SDK documentation READMEs (#25696) 2025-12-17 17:12:11 +00:00
tx chore: separated deprecated modules into the contrib directory (#25613) 2025-12-01 18:17:57 +00:00
upgrade docs: fix typos and wording across SDK documentation READMEs (#25696) 2025-12-17 17:12:11 +00:00
README.md docs: fix typos and wording across SDK documentation READMEs (#25696) 2025-12-17 17:12:11 +00: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.
  • Consensus - Consensus module for modifying CometBFT's ABCI consensus params.
  • Distribution - Fee distribution, and staking token provision distribution.
  • 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.
  • Evidence - Evidence handling for double signing, misbehaviour, etc.

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 on 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 actively.

  • 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.
  • Group - Deprecated Allows for the creation and management of on-chain multisig accounts.
  • Circuit Deprecated - Circuit breaker module for pausing messages.

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.