cosmos-sdk/x
2022-10-03 22:36:56 +00:00
..
auth feat: context on simulate error (#13435) 2022-10-03 22:36:56 +00:00
authz refactor!: extract simulation helpers out of simapp (#13402) 2022-09-27 21:19:44 +02:00
bank feat: x/bank deterministic tests (#13362) 2022-09-29 09:24:37 +00:00
capability refactor: migrate to cosmos/gogoproto (#13070) 2022-09-08 17:27:48 +00:00
consensus refactor: migrate to cosmos/gogoproto (#13070) 2022-09-08 17:27:48 +00:00
crisis refactor!: remove broadcast mode block (#12659) 2022-09-23 15:16:31 +00:00
distribution refactor!: extract simulation helpers out of simapp (#13402) 2022-09-27 21:19:44 +02:00
epoching chore: collapse module spec and readme (#13143) 2022-09-05 12:26:40 +00:00
evidence refactor: move x/{moduleName}/test{ModuleName} to x/{moduleName}/testutil (#13427) 2022-10-02 10:42:52 -04:00
feegrant chore: minor cleanup of types (#13430) 2022-10-02 15:03:03 +02:00
genutil chore: run make format (#13375) 2022-09-24 00:22:03 +02:00
gov refactor!: extract simulation helpers out of simapp (#13402) 2022-09-27 21:19:44 +02:00
group fix: all: remove map iteration non-determinism with keys + sorting (#13377) 2022-09-24 16:20:54 +00:00
mint refactor!: remove broadcast mode block (#12659) 2022-09-23 15:16:31 +00:00
nft chore: run make format (#13375) 2022-09-24 00:22:03 +02:00
params refactor!: remove broadcast mode block (#12659) 2022-09-23 15:16:31 +00:00
simulation refactor!: extract simulation helpers out of simapp (#13402) 2022-09-27 21:19:44 +02:00
slashing refactor: move x/{moduleName}/test{ModuleName} to x/{moduleName}/testutil (#13427) 2022-10-02 10:42:52 -04:00
staking refactor: move x/{moduleName}/test{ModuleName} to x/{moduleName}/testutil (#13427) 2022-10-02 10:42:52 -04:00
upgrade chore: run make format (#13375) 2022-09-24 00:22:03 +02:00
README.md chore: collapse module spec and readme (#13143) 2022-09-05 12:26:40 +00:00

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.
  • Capability - Object capability implementation.
  • Crisis - Halting the blockchain under certain circumstances (e.g. if an invariant is broken).
  • Distribution - Fee distribution, and staking token provision distribution.
  • Epoching - Allows modules to queue messages for execution at a certain block height.
  • 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.

To learn more about the process of building modules, visit the building modules reference documentation.

IBC

The IBC module for the SDK has moved to its own repository.

CosmWasm

The CosmWasm module enables smart contracts, and has its own repository and documentation site.