Essential modules include functionality that must be included in your Cosmos SDK blockchain. These modules provide the core behaviors that are needed for users and operators such as balance tracking, proof-of-stake capabilities and governance.
Auth - Authentication of accounts and transactions for Cosmos SDK applications.
Supplementary modules are modules that are maintained in the Cosmos SDK but are not necessary for
the core functionality of your blockchain. They can be thought of as ways to extend the
capabilities of your blockchain or further specialize it.
Authz - Authorization for accounts to perform actions on behalf of other accounts.
Epochs - Registration so SDK modules can have logic to be executed at the timed tickers.
Feegrant - Grant fee allowances for executing transactions.
Group - Allows for the creation and management of on-chain multisig accounts.
The following modules are deprecated. They will no longer be maintained and eventually will be removed
in an upcoming release of the Cosmos SDK per our release process.
Crisis - Deprecated halting the blockchain under certain circumstances (e.g. if an invariant is broken).
Params - Deprecated Globally available parameter store.
The IBC module for the SDK is maintained by the IBC Go team in its own repository.Additionally, the capability module is from v0.50+ maintained by the IBC Go team in its own repository.