cosmos-sdk/x
Dev Ojha 8eaff8fadd
fix: Make rechecking a tx check the sequence number #12060
2022-05-26 17:09:12 -04:00
..
auth fix: Make rechecking a tx check the sequence number #12060 2022-05-26 17:09:12 -04:00
authz refactor: Revert middlewares to antehandlers (part 1/2: baseapp) (#11979) 2022-05-20 09:27:27 +00:00
bank chore: gofumpt (#11839) 2022-05-19 10:55:27 +02:00
capability chore: gofumpt (#11839) 2022-05-19 10:55:27 +02:00
crisis chore: gofumpt (#11839) 2022-05-19 10:55:27 +02:00
distribution docs: Add inline docs (#11992) 2022-05-19 09:12:26 +00:00
epoching docs: Improve markdownlint configuration (#11104) 2022-02-10 12:07:01 +00:00
evidence chore: gofumpt (#11839) 2022-05-19 10:55:27 +02:00
feegrant refactor: Revert middlewares to antehandlers (part 1/2: baseapp) (#11979) 2022-05-20 09:27:27 +00:00
genutil chore: gofumpt (#11839) 2022-05-19 10:55:27 +02:00
gov chore: improve go module chache (#12057) 2022-05-26 15:59:04 -04:00
group refactor: Revert middlewares to antehandlers (part 1/2: baseapp) (#11979) 2022-05-20 09:27:27 +00:00
mint chore: gofumpt (#11839) 2022-05-19 10:55:27 +02:00
nft chore: gofumpt (#11839) 2022-05-19 10:55:27 +02:00
params feat: start app wiring with runtime and x/params modules (#11924) 2022-05-24 21:09:24 -04:00
simulation chore: gofumpt (#11839) 2022-05-19 10:55:27 +02:00
slashing docs: Add inline docs (#11992) 2022-05-19 09:12:26 +00:00
staking docs: Add inline docs (#11992) 2022-05-19 09:12:26 +00:00
upgrade refactor: Revert middlewares to antehandlers (part 1/2: baseapp) (#11979) 2022-05-20 09:27:27 +00:00
README.md docs: Improve markdownlint configuration (#11104) 2022-02-10 12:07:01 +00:00

README.md

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.

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.