cosmos-sdk/x
Matt Kocubinski 8c281ee731
feat(x/bank): app wiring migration (#12032)
* Initial work on bank module app wiring

* Fix import in bank module

* integrating bank module into simapp DI

* Integrate usages of ModuleAccountAddrs into DI container, remove from SimApp

* Remove dependency on authkeeper from bank module

* Integrate with keyed resolvers feature of depinject

* Refactoring to remove direct dependency from bank -> auth

* Clean up app.yaml usage in test

* Clean up comments, keys, and testing fns.

* Remove commented example in bank module config

* Regenerate code from proto files

* Fix usage of BlockedModuleAccountsOverride
2022-06-01 16:21:42 -05:00
..
auth feat(x/bank): app wiring migration (#12032) 2022-06-01 16:21:42 -05:00
authz docs: updates outdated docs (#12014) 2022-05-31 08:59:38 -04:00
bank feat(x/bank): app wiring migration (#12032) 2022-06-01 16:21:42 -05:00
capability docs: updates outdated docs (#12014) 2022-05-31 08:59:38 -04:00
crisis docs: updates outdated docs (#12014) 2022-05-31 08:59:38 -04:00
distribution docs: updates outdated docs (#12014) 2022-05-31 08:59:38 -04:00
epoching docs: updates outdated docs (#12014) 2022-05-31 08:59:38 -04:00
evidence docs: updates outdated docs (#12014) 2022-05-31 08:59:38 -04:00
feegrant docs: updates outdated docs (#12014) 2022-05-31 08:59:38 -04:00
genutil docs: updates outdated docs (#12014) 2022-05-31 08:59:38 -04:00
gov docs: updates outdated docs (#12014) 2022-05-31 08:59:38 -04:00
group docs: updates outdated docs (#12014) 2022-05-31 08:59:38 -04:00
mint docs: updates outdated docs (#12014) 2022-05-31 08:59:38 -04:00
nft chore: gofumpt (#11839) 2022-05-19 10:55:27 +02:00
params refactor!: rename container to cosmossdk.io/depinject (#12020) 2022-05-27 19:34:48 +02:00
simulation chore: gofumpt (#11839) 2022-05-19 10:55:27 +02:00
slashing docs: updates outdated docs (#12014) 2022-05-31 08:59:38 -04:00
staking docs: updates outdated docs (#12014) 2022-05-31 08:59:38 -04:00
upgrade docs: updates outdated docs (#12014) 2022-05-31 08:59:38 -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.