cosmos-sdk/x
2024-04-21 21:27:56 +02:00
..
auth refactor(x/auth): allow empty public keys for GetSignBytesAdapter (backport #19651) (#19675) 2024-03-07 16:15:17 +00:00
authz fix(x/authz,x/feegrant): check blocked address (#20102) 2024-04-21 21:27:56 +02:00
bank feat(x/bank): support depinject for send restrictions (backport #20014) (#20024) 2024-04-15 23:29:52 +02:00
circuit chore: prepare v0.50.6 (#19998) 2024-04-21 20:59:10 +02:00
consensus feat: bring autocli module config to v0.50 (#18111) 2023-10-16 15:09:06 +02:00
crisis feat: Conditionally emit metrics based on enablement (backport #19903) (#20017) 2024-04-12 12:13:28 +02:00
distribution feat: Conditionally emit metrics based on enablement (backport #19903) (#20017) 2024-04-12 12:13:28 +02:00
evidence chore: prepare v0.50.6 (#19998) 2024-04-21 20:59:10 +02:00
feegrant fix(x/authz,x/feegrant): check blocked address (#20102) 2024-04-21 21:27:56 +02:00
genutil perf: parse chain-id from big genesis file could be slow (backport #18204) (#18267) 2023-10-26 12:46:39 +02:00
gov feat: Conditionally emit metrics based on enablement (backport #19903) (#20017) 2024-04-12 12:13:28 +02:00
group refactor(x/group): check the new admin address when updating the group policy admin (backport #18350) (#18352) 2023-11-03 09:56:42 +00:00
mint feat: Conditionally emit metrics based on enablement (backport #19903) (#20017) 2024-04-12 12:13:28 +02:00
nft chore: prepare v0.50.6 (#19998) 2024-04-21 20:59:10 +02:00
params refactor: precise compiler assertions and cleanup module.go (backport #17718) (#17724) 2023-09-13 19:08:56 +00:00
simulation fix: use timestamp for sim log file name (backport #20108) (#20111) 2024-04-21 21:16:03 +02:00
slashing feat: Conditionally emit metrics based on enablement (backport #19903) (#20017) 2024-04-12 12:13:28 +02:00
staking feat: Conditionally emit metrics based on enablement (backport #19903) (#20017) 2024-04-12 12:13:28 +02:00
tx build(deps): Bump github.com/cosmos/cosmos-proto from 1.0.0-beta.4 to 1.0.0-beta.5 (#20095) 2024-04-19 10:40:16 +02:00
upgrade chore: prepare v0.50.6 (#19998) 2024-04-21 20:59:10 +02:00
README.md docs: small update for routes change (backport #17881) (#17886) 2023-09-26 17:42:42 +02:00

sidebar_position
0

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.