cosmos-sdk/x
2024-10-03 11:53:17 +02:00
..
auth fix(cli): avoid id isn't supported error when query address-by-acc-num (backport #21919) (#21922) 2024-09-26 09:29:12 +02:00
authz docs(x/authz): update grant docs (backport #21677) (#21700) 2024-09-13 11:13:08 +05:30
bank feat(x/bank): add origin address in event multisend (backport #21460) (#21465) 2024-08-29 15:14:21 +00:00
circuit docs(x/circuit): display correct example (backport #21768) (#21773) 2024-09-17 10:12:30 +00:00
consensus fix(x/consensus)!: update cons params parsing checks (backport #21484) (#21493) 2024-09-02 12:29: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 docs(x/evidence): fix evidence module subcommands help message (backport #21589) (#21592) 2024-09-09 08:50:50 +02:00
feegrant build(deps): Bump github.com/cometbft/cometbft from 0.38.11 to 0.38.12 (#21535) 2024-09-04 16:53:31 +02:00
genutil feat(x/genutil): add better error messages for genesis validation (backport #21701) (#21708) 2024-09-13 12:43:39 +02:00
gov chore: Revert "docs: update gov docs (backport #22048)" (#22064) 2024-10-03 11:53:17 +02:00
group fix(simulation): Fix all problems make test-sim-custom-genesis-fast for simulation test. (backport #17911) (#20909) 2024-07-11 08:28:37 +00:00
mint feat: Conditionally emit metrics based on enablement (backport #19903) (#20017) 2024-04-12 12:13:28 +02:00
nft build(deps): Bump github.com/cometbft/cometbft from 0.38.11 to 0.38.12 (#21535) 2024-09-04 16:53:31 +02:00
params refactor: precise compiler assertions and cleanup module.go (backport #17718) (#17724) 2023-09-13 19:08:56 +00:00
simulation fix(sims): Skip sims test when running dry on validators (backport #21906) (#21910) 2024-09-26 09:58:40 +02:00
slashing feat: Conditionally emit metrics based on enablement (backport #19903) (#20017) 2024-04-12 12:13:28 +02:00
staking fix(x/staking): query redelegation command (backport #21856) (#21861) 2024-09-23 15:56:53 +00:00
tx feat(x/tx): add aminoNameAsTypeURL option in aminojson encoder (backport #21712) (#21798) 2024-09-18 14:21:44 +02:00
upgrade build(deps): Bump github.com/cometbft/cometbft from 0.38.11 to 0.38.12 (#21535) 2024-09-04 16:53:31 +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.