cosmos-sdk/x
2023-07-31 09:32:33 +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 github.com/rs/zerolog from 1.29.1 to 1.30.0 (#17201) 2023-07-31 07:55:01 +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(x/distribution)!: migrate to collections (#17115) 2023-07-31 08:41:22 +00:00
evidence build(deps): Bump github.com/rs/zerolog from 1.29.1 to 1.30.0 (#17201) 2023-07-31 07:55:01 +00:00
feegrant build(deps): Bump github.com/rs/zerolog from 1.29.1 to 1.30.0 (#17201) 2023-07-31 07:55:01 +00:00
genutil refactor: hide --output flags that don't work (#17188) 2023-07-29 23:53:27 +00:00
gov test(gov): add missing assertion on TestTally (#17180) 2023-07-28 15:48:30 +00:00
group fix(x/group): rename group's legacy ORM error codespace to prevent co… (#17146) 2023-07-26 18:36:04 +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 github.com/rs/zerolog from 1.29.1 to 1.30.0 (#17201) 2023-07-31 07:55:01 +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 delegations by validator to use collections (#17155) 2023-07-28 08:46:12 +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 github.com/rs/zerolog from 1.29.1 to 1.30.0 (#17201) 2023-07-31 07:55:01 +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.