cosmos-sdk/x
2023-05-30 15:50:23 +00:00
..
auth refactor(auth): use collections for Account state management (#16016) 2023-05-26 09:26:58 +00:00
authz refactor!: deprecate sdk.Msg.GetSigners (#15284) 2023-05-25 18:35:09 +00:00
bank fix: Fix x/bank Benchmarks (#16282) 2023-05-24 21:27:35 +00:00
circuit refactor(Store): remove abci query req and res deps from store (#16321) 2023-05-30 15:50:23 +00:00
consensus feat!: Comet v0.38 Integration (#15519) 2023-05-24 16:09:19 +00:00
crisis refactor(crisis)!: use collections for state management (#16328) 2023-05-29 17:12:57 +00:00
distribution refactor(distribution)!: make FeePool state use collections (#16302) 2023-05-26 09:51:37 +00:00
evidence refactor(Store): remove abci query req and res deps from store (#16321) 2023-05-30 15:50:23 +00:00
feegrant refactor(Store): remove abci query req and res deps from store (#16321) 2023-05-30 15:50:23 +00:00
genutil chore: set correct eden version number (#16281) 2023-05-24 19:58:45 +00:00
gov chore: implement feedback of automerged prs (#16308) 2023-05-26 10:42:18 +00:00
group build(deps): Bump pgregory.net/rapid from 0.5.7 to 0.6.0 (#16332) 2023-05-30 13:12:39 +00:00
mint refactor(mint)!: migrate state management to collections (#16329) 2023-05-30 09:12:45 +00:00
nft refactor(Store): remove abci query req and res deps from store (#16321) 2023-05-30 15:50:23 +00:00
params refactor(staking, slashing, signing, misc): remove aliases from types/math.go (#15902) 2023-04-25 08:55:17 +00:00
simulation fix: context and finalizeBlockReq block time (sims) (#16286) 2023-05-25 11:27:18 +00:00
slashing refactor(x/slashing)!: use kvStoreService, context.Context and return errors (#16246) 2023-05-30 09:45:18 +00:00
staking refactor(mint)!: migrate state management to collections (#16329) 2023-05-30 09:12:45 +00:00
tx build(deps): Bump pgregory.net/rapid from 0.5.7 to 0.6.0 (#16332) 2023-05-30 13:12:39 +00:00
upgrade refactor(Store): remove abci query req and res deps from store (#16321) 2023-05-30 15:50:23 +00:00
README.md chore: set correct eden version number (#16281) 2023-05-24 19:58:45 +00:00

sidebar_position slug
0 /modules

List of Modules

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

  • Auth - Authentication of accounts and transactions for Cosmos SDK applications.
  • Authz - Authorization for accounts to perform actions on behalf of other accounts.
  • Bank - Token transfer functionalities.
  • Crisis - Halting the blockchain under certain circumstances (e.g. if an invariant is broken).
  • Distribution - Fee distribution, and staking token provision distribution.
  • Evidence - Evidence handling for double signing, misbehaviour, etc.
  • Feegrant - Grant fee allowances for executing transactions.
  • Governance - On-chain proposals and voting.
  • Mint - Creation of new units of staking token.
  • Params - Globally available parameter store.
  • Slashing - Validator punishment mechanisms.
  • Staking - Proof-of-Stake layer for public blockchains.
  • Upgrade - Software upgrades handling and coordination.
  • NFT - NFT module implemented based on ADR43.
  • Consensus - Consensus module for modifying CometBFT's ABCI consensus params.
  • Circuit - Circuit breaker module for pausing messages.
  • Genutil - Genesis utilities for the Cosmos SDK.

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.