* Fix ABS061 (cherry picked from commit f6f56395fd4b919063e19aa94e7178793ac0fd6b) (cherry picked from commit 34b30b0ed6b3145b94719650eb3246a91ed977ce) * Review feedback (cherry picked from commit c892055e7fa86db8382fb2af17bb66342d7e2eeb) * Check for events (cherry picked from commit 16fc26041457b01077df4d3d3d25c9eaf00780d2) * Review feedback * Remove unecessary code comments * Update changelog * Remove duplicate headline after merge |
||
|---|---|---|
| .. | ||
| auth | ||
| authz | ||
| bank | ||
| circuit | ||
| consensus | ||
| crisis | ||
| distribution | ||
| epochs | ||
| evidence | ||
| feegrant | ||
| genutil | ||
| gov | ||
| group | ||
| mint | ||
| nft | ||
| params | ||
| simulation | ||
| slashing | ||
| staking | ||
| tx | ||
| upgrade | ||
| README.md | ||
| 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.