cosmos-sdk/x
2023-08-02 17:52:31 +02:00
..
auth fix(x/auth): internal error on AccountInfo when PubKey is nil (backport #17209) (#17210) 2023-07-31 09:51:36 +00:00
authz feat(authz): autocli query support (backport #16986) (#16988) 2023-07-13 15:33:55 +00:00
bank fix(bank): avoid empty spendable error message on send coins (backport #17170) (#17179) 2023-07-28 14:53:21 +00:00
circuit build(deps): Bump cosmossdk.io/log from 1.1.1-0.20230704160919-88f2c830b0ca to 1.2.0 (#17246) 2023-08-01 14:16:13 +02:00
consensus feat!: simplify AppModuleBasic interface for CLI (backport #16890) (#16904) 2023-07-10 14:11:53 +00:00
crisis chore: remove unused getsigner functions (backport #16937) (#16957) 2023-07-12 18:11:24 +02:00
distribution refactor(staking): remove expected distribution keeper (backport #17261) (#17263) 2023-08-02 17:52:31 +02:00
evidence build(deps): Bump cosmossdk.io/log from 1.1.1-0.20230704160919-88f2c830b0ca to 1.2.0 (#17246) 2023-08-01 14:16:13 +02:00
feegrant build(deps): Bump cosmossdk.io/log from 1.1.1-0.20230704160919-88f2c830b0ca to 1.2.0 (#17246) 2023-08-01 14:16:13 +02:00
genutil refactor: hide --output flags that don't work (backport #17188) (#17191) 2023-07-30 00:09:49 +00:00
gov refactor(staking): remove expected distribution keeper (backport #17261) (#17263) 2023-08-02 17:52:31 +02:00
group feat(gov,group): allow draft-proposal to skip metatada prompt (backport #17220) (#17242) 2023-08-01 11:41:53 +00:00
mint chore: replace amino cosmos_dec_bytes annoation by scalar cosmos.Dec and add missing annotations (backport #17000) (#17002) 2023-07-14 18:46:33 +00:00
nft build(deps): Bump cosmossdk.io/log from 1.1.1-0.20230704160919-88f2c830b0ca to 1.2.0 (#17246) 2023-08-01 14:16:13 +02:00
params feat(params): autocli query support (backport #17007) (#17008) 2023-07-15 08:52:13 +00:00
simulation fix: Revert 16794 (backport #16895) (#16896) 2023-07-10 08:02:04 +00:00
slashing refactor: remove global valaddress bech32 codec calls (1/2) (backport #17098) (#17149) 2023-07-27 00:55:11 +02:00
staking refactor(staking): remove expected distribution keeper (backport #17261) (#17263) 2023-08-02 17:52:31 +02:00
tx refactor(runtime): define address codec providers in runtime (backport #17037) (#17043) 2023-07-18 16:38:14 +02:00
upgrade build(deps): Bump cosmossdk.io/log from 1.1.1-0.20230704160919-88f2c830b0ca to 1.2.0 (#17246) 2023-08-01 14:16:13 +02: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.