cosmos-sdk/x
Julien Robert e783a41221
feat: carry x/gov proposal execution error message (#15554)
Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>
2023-03-27 16:59:14 +00:00
..
auth refactor(feegrant): remove bech32 global (#15347) 2023-03-24 22:33:34 +00:00
authz refactor: Use CoreAPI when possible (#15496) 2023-03-23 22:40:09 +00:00
bank refactor(bank): update InputOutputCoins arguments (#15477) 2023-03-20 17:32:39 +00:00
circuit build(deps): Bump cosmossdk.io/math from 1.0.0-rc.0 to 1.0.0 (#15532) 2023-03-23 15:44:09 +00:00
consensus refactor: Use CoreAPI when possible (#15496) 2023-03-23 22:40:09 +00:00
crisis refactor: Use CoreAPI when possible (#15496) 2023-03-23 22:40:09 +00:00
distribution refactor: Use CoreAPI when possible (#15496) 2023-03-23 22:40:09 +00:00
evidence refactor: Use CoreAPI when possible (#15496) 2023-03-23 22:40:09 +00:00
feegrant refactor(feegrant): remove bech32 global (#15347) 2023-03-24 22:33:34 +00:00
genutil refactor: remove capability module (#15344) 2023-03-10 12:59:10 +00:00
gov feat: carry x/gov proposal execution error message (#15554) 2023-03-27 16:59:14 +00:00
group refactor: Use CoreAPI when possible (#15496) 2023-03-23 22:40:09 +00:00
mint refactor: Use CoreAPI when possible (#15496) 2023-03-23 22:40:09 +00:00
nft refactor: Use CoreAPI when possible (#15496) 2023-03-23 22:40:09 +00:00
params refactor: remove unnecessary depinject usage (#15529) 2023-03-23 16:18:41 +00:00
simulation refactor: remove bytes/HexBytes (#15211) 2023-03-01 18:27:23 +00:00
slashing refactor: Use CoreAPI when possible (#15496) 2023-03-23 22:40:09 +00:00
staking docs: add configuration docs (#15544) 2023-03-25 13:11:32 +01:00
tx build(deps): Bump cosmossdk.io/core from 0.6.1-0.20230309163709-87da587416ba to 0.6.1 in /x/tx (#15538) 2023-03-23 18:53:26 +00:00
upgrade refactor: Use CoreAPI when possible (#15496) 2023-03-23 22:40:09 +00:00
README.md docs: replace Tendermint references in docs with CometBFT (#15339) 2023-03-14 20:41:35 +01: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 has moved to its own repository.

CosmWasm

The CosmWasm module enables smart contracts, and has its own repository and documentation site.