cosmos-sdk/x
Aleksandr Bezobchuk 69d8fa2baf
chore: params cleanup (#12480)
Adds missing error checks to the modules that migrated away from `x/params`
2022-07-08 06:38:18 +00: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 chore: params cleanup (#12480) 2022-07-08 06:38:18 +00: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 chore: params cleanup (#12480) 2022-07-08 06:38:18 +00:00
group fix: Simulation is not deterministic due to GenSignedMockTx (#12374) 2022-06-30 11:12:25 -04:00
mint chore: params cleanup (#12480) 2022-07-08 06:38:18 +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 chore: params cleanup (#12480) 2022-07-08 06:38:18 +00:00
staking chore: params cleanup (#12480) 2022-07-08 06:38:18 +00: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

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.