cosmos-sdk/x
mergify[bot] 5ac1da46b7
feat(server/v2/cometbft): Implement necessary handlers and helpers for vote extensions (backport #22830) (#23006)
Co-authored-by: Facundo Medica <14063057+facundomedica@users.noreply.github.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>
2024-12-19 14:05:15 +01:00
..
accounts chore: fix spelling errors (backport #23004) (#23005) 2024-12-19 13:31:19 +01:00
auth feat(server/v2/cometbft): Implement necessary handlers and helpers for vote extensions (backport #22830) (#23006) 2024-12-19 14:05:15 +01:00
authz chore: fix spelling errors (backport #23004) (#23005) 2024-12-19 13:31:19 +01:00
bank chore: the great replace removal (release/v0.52.x) (3/3) (#22986) 2024-12-18 18:39:16 +01:00
circuit chore: the great replace removal (release/v0.52.x) (3/3) (#22986) 2024-12-18 18:39:16 +01:00
consensus chore: the great replace removal (release/v0.52.x) (3/3) (#22986) 2024-12-18 18:39:16 +01:00
distribution chore: the great replace removal (release/v0.52.x) (3/3) (#22986) 2024-12-18 18:39:16 +01:00
epochs chore: the great replace removal (release/v0.52.x) (3/3) (#22986) 2024-12-18 18:39:16 +01:00
evidence chore: the great replace removal (release/v0.52.x) (3/3) (#22986) 2024-12-18 18:39:16 +01:00
feegrant chore: the great replace removal (release/v0.52.x) (3/3) (#22986) 2024-12-18 18:39:16 +01:00
genutil test(systemtests): fix export v2 (backport #22799) (#22806) 2024-12-09 16:57:51 +01:00
gov chore: the great replace removal (release/v0.52.x) (3/3) (#22986) 2024-12-18 18:39:16 +01:00
group chore: the great replace removal (release/v0.52.x) (3/3) (#22986) 2024-12-18 18:39:16 +01:00
mint chore: the great replace removal (release/v0.52.x) (3/3) (#22986) 2024-12-18 18:39:16 +01:00
nft chore: the great replace removal (release/v0.52.x) (3/3) (#22986) 2024-12-18 18:39:16 +01:00
params chore: the great replace removal (release/v0.52.x) (3/3) (#22986) 2024-12-18 18:39:16 +01:00
protocolpool chore: the great replace removal (release/v0.52.x) (3/3) (#22986) 2024-12-18 18:39:16 +01:00
simulation fix(sims): Use liveness matrix for val sign status in sims (backport #21952) (#21957) 2024-09-27 11:32:15 +00:00
slashing chore: the great replace removal (release/v0.52.x) (3/3) (#22986) 2024-12-18 18:39:16 +01:00
staking chore: the great replace removal (release/v0.52.x) (3/3) (#22986) 2024-12-18 18:39:16 +01:00
upgrade chore: the great replace removal (release/v0.52.x) (3/3) (#22986) 2024-12-18 18:39:16 +01:00
validate refactor(x/validate): add nil protection (backport #22902) (#22909) 2024-12-16 20:45:32 +01:00
README.md feat: introduce x/validate and split x/auth/tx/config (backport #21822) (#21836) 2024-09-20 17:00:16 +00: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.
  • Circuit - Circuit breaker module for pausing messages.
  • Consensus - Consensus module for modifying CometBFT's ABCI consensus params.
  • Distribution - Fee distribution, and staking token provision distribution.
  • Epochs - Allow other modules to set that they would like to be signaled once every period
  • Evidence - Evidence handling for double signing, misbehaviour, etc.
  • Feegrant - Grant fee allowances for executing transactions.
  • Genutil - Genesis utilities for the Cosmos SDK.
  • Governance - On-chain proposals and voting.
  • Mint - Creation of new units of staking token.
  • NFT - NFT module implemented based on ADR43.
  • Params - Globally available parameter store.
  • Protocolpool - Functionalities handling community pool funds.
  • Slashing - Validator punishment mechanisms.
  • Staking - Proof-of-Stake layer for public blockchains.
  • tx - Tx utilities for the Cosmos SDK.
  • Upgrade - Software upgrades handling and coordination.
  • Validate - Global ante/post handlers and tx validator setup.

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.