cosmos-sdk/x
2024-06-07 14:34:02 +02:00
..
auth fix: allow tx decoding to fail in GetBlockWithTxs (backport #20323) (#20329) 2024-05-09 13:23:31 +00:00
authz refactor(x/authz,x/feegrant): provide updated keeper in depinject (#20590) 2024-06-07 14:34:02 +02:00
bank docs: add docs on permissions (backport #20526) (#20527) 2024-06-03 12:57:33 +02:00
circuit build(deps): Bump github.com/cosmos/gogoproto from 1.4.12 to 1.5.0 (#20567) 2024-06-06 10:18:38 +02:00
consensus fix(x/consensus): harden consensus params proposal (#20381) 2024-05-28 10:25:56 +00: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 build(deps): Bump github.com/cosmos/gogoproto from 1.4.12 to 1.5.0 (#20567) 2024-06-06 10:18:38 +02:00
feegrant refactor(x/authz,x/feegrant): provide updated keeper in depinject (#20590) 2024-06-07 14:34:02 +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 style: Fix gov query proposals examples syntax (backport #20353) (#20357) 2024-05-12 11:26:26 +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 build(deps): Bump github.com/cosmos/gogoproto from 1.4.12 to 1.5.0 (#20567) 2024-06-06 10:18:38 +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/gogoproto from 1.4.12 to 1.5.0 (#20567) 2024-06-06 10:18:38 +02:00
upgrade build(deps): Bump github.com/cosmos/gogoproto from 1.4.12 to 1.5.0 (#20567) 2024-06-06 10:18:38 +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.