cosmos-sdk/x
2023-08-03 12:50:16 +00:00
..
auth fix(x/auth): internal error on AccountInfo when PubKey is nil (#17209) 2023-07-31 09:32:33 +00:00
authz feat(authz): autocli query support (#16986) 2023-07-13 14:45:56 +00:00
bank fix(bank): avoid empty spendable error message on send coins (#17170) 2023-07-28 14:38:26 +00:00
circuit build(deps): Bump cosmossdk.io/log from 1.1.0 to 1.2.0 (#17249) 2023-08-01 12:39:40 +00:00
consensus chore: enable errcheck linter (#16406) 2023-07-12 08:58:27 +00:00
crisis chore: remove unused getsigner functions (#16937) 2023-07-12 15:09:02 +00:00
distribution refactor(staking): remove expected distribution keeper (#17261) 2023-08-02 15:31:36 +00:00
evidence build(deps): Bump cosmossdk.io/log from 1.1.0 to 1.2.0 (#17249) 2023-08-01 12:39:40 +00:00
feegrant build(deps): Bump cosmossdk.io/log from 1.1.0 to 1.2.0 (#17249) 2023-08-01 12:39:40 +00:00
genutil refactor(cli): remove duplicate --home flag (#17215) 2023-08-01 09:42:32 +00:00
gov refactor(staking): remove expected distribution keeper (#17261) 2023-08-02 15:31:36 +00:00
group feat(gov,group): allow draft-proposal to skip metatada prompt (#17220) 2023-08-01 11:02:14 +00:00
mint chore: replace amino cosmos_dec_bytes annoation by scalar cosmos.Dec and add missing annotations (#17000) 2023-07-14 18:10:28 +00:00
nft build(deps): Bump cosmossdk.io/log from 1.1.0 to 1.2.0 (#17249) 2023-08-01 12:39:40 +00:00
params feat(params): autocli query support (#17007) 2023-07-15 08:32:41 +00:00
simulation chore: enable errcheck linter (#16406) 2023-07-12 08:58:27 +00:00
slashing refactor: remove global valaddress bech32 codec calls (1/2) (#17098) 2023-07-26 19:01:21 +00:00
staking refactor(x/staking): Migrate UnbondingID to collections (#17256) 2023-08-03 12:50:16 +00:00
tx build(deps): Bump google.golang.org/grpc from 1.56.2 to 1.57.0 in /core (#17150) 2023-07-27 07:49:13 +00:00
upgrade build(deps): Bump cosmossdk.io/log from 1.1.0 to 1.2.0 (#17249) 2023-08-01 12:39:40 +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.