cosmos-sdk/x
Matt Kocubinski 36ffd7a6da
refactor(x/params): use mocks for testing (#12473)
* remove dependency on simapp from x/params keeper tests

* refactor x/params proposal_handler_test away from simapp

* update mockgen

* import ordering

* more import ordering
2022-07-08 07:44:01 +02:00
..
auth fix(x/auth): allow multiple = signs in GetTxsEvent (#12474) 2022-07-07 12:42:24 -04:00
authz fix: Simulation is not deterministic due to GenSignedMockTx (#12374) 2022-06-30 11:12:25 -04:00
bank fix: Simulation is not deterministic due to GenSignedMockTx (#12374) 2022-06-30 11:12:25 -04:00
capability docs: remove app wiring from module docs (#12393) 2022-06-30 14:11:25 +01:00
crisis feat: migrate x/crisis use app wiring (#12389) 2022-06-30 17:57:19 +02:00
distribution feat: migrate x/gov use app wiring (#12369) 2022-07-04 14:58:48 +02:00
epoching docs: updates outdated docs (#12014) 2022-05-31 08:59:38 -04:00
evidence docs: remove app wiring from module docs (#12393) 2022-06-30 14:11:25 +01:00
feegrant docs(x/feegrant): use coins instead of tokens (#12444) 2022-07-05 14:19:36 +00:00
genutil fix: Simulation is not deterministic due to GenSignedMockTx (#12374) 2022-06-30 11:12:25 -04:00
gov docs: clarify differences and usage of submit-proposal and submit-legacy-proposal for gov (#12410) 2022-07-06 12:42:48 -04:00
group fix: Simulation is not deterministic due to GenSignedMockTx (#12374) 2022-06-30 11:12:25 -04:00
mint chore: fix x/mint param sims (#12461) 2022-07-05 21:12:38 +00:00
nft refactor: Use mocks for x/nft testing (#12407) 2022-07-05 14:38:27 +00:00
params refactor(x/params): use mocks for testing (#12473) 2022-07-08 07:44:01 +02:00
simulation fix: Simulation is not deterministic due to GenSignedMockTx (#12374) 2022-06-30 11:12:25 -04:00
slashing feat: deprecate x/params usage in x/slashing (#12399) 2022-07-06 16:42:22 -04:00
staking feat: migrate x/crisis use app wiring (#12389) 2022-06-30 17:57:19 +02:00
upgrade feat: deprecate x/params usage in x/mint (#12363) 2022-07-04 10:59:32 -04:00
README.md docs: Improve markdownlint configuration (#11104) 2022-02-10 12:07:01 +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.

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.