cosmos-sdk/x
luozexuan ac90304f4d
chore: fix some function names in comment (#24263)
Signed-off-by: luozexuan <fetchcode@139.com>
2025-04-01 14:48:58 +00:00
..
auth fix(x/auth): ensure the elements of do not exceed 1000 (#24208) 2025-03-31 14:07:45 +00:00
authz refactor(proto): Use cosmos_proto added_in annotation instead comments (#24105) 2025-03-25 17:57:47 +00:00
bank feat(sims): introduce message factories/ simsx (#24126) 2025-03-28 16:08:23 +00:00
circuit chore: use rc tags (#24244) 2025-04-01 14:46:11 +00:00
consensus refactor(proto): Use cosmos_proto added_in annotation instead comments (#24105) 2025-03-25 17:57:47 +00:00
crisis refactor(proto): Use cosmos_proto added_in annotation instead comments (#24105) 2025-03-25 17:57:47 +00:00
distribution feat: add x/protocolpool (#23933) 2025-03-29 19:45:39 +00:00
epochs chore: lint v2 (#24118) 2025-03-25 15:57:24 +00:00
evidence chore: use rc tags (#24244) 2025-04-01 14:46:11 +00:00
feegrant chore: use rc tags (#24244) 2025-04-01 14:46:11 +00:00
genutil chore: fix all linting (#24101) 2025-03-21 15:04:36 -07:00
gov refactor(proto): Use cosmos_proto added_in annotation instead comments (#24105) 2025-03-25 17:57:47 +00:00
group refactor(proto): Use cosmos_proto added_in annotation instead comments (#24105) 2025-03-25 17:57:47 +00:00
mint refactor(proto): Use cosmos_proto added_in annotation instead comments (#24105) 2025-03-25 17:57:47 +00:00
nft chore: use rc tags (#24244) 2025-04-01 14:46:11 +00:00
params refactor(proto): Use cosmos_proto added_in annotation instead comments (#24105) 2025-03-25 17:57:47 +00:00
protocolpool feat: add x/protocolpool (#23933) 2025-03-29 19:45:39 +00:00
simulation feat(sims): introduce message factories/ simsx (#24126) 2025-03-28 16:08:23 +00:00
slashing refactor(proto): Use cosmos_proto added_in annotation instead comments (#24105) 2025-03-25 17:57:47 +00:00
staking chore: slices Delete (#24164) 2025-03-31 16:26:44 +00:00
tx chore: use sdk release tag (#24243) 2025-03-31 21:00:43 +00:00
upgrade chore: fix some function names in comment (#24263) 2025-04-01 14:48:58 +00:00
README.md docs: add x/ docs (backport #23955) (#23956) 2025-03-10 14:40:04 -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.
  • Group - Allows for the creation and management of on-chain multisig accounts.
  • NFT - NFT module implemented based on ADR43.
  • 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.

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.