cosmos-sdk/x
Alessio Treglia 394860068d
keyring's encrypted file backend integration (#5355)
Client commands accept a new `--keyring-backend` option through which users can specify which backend should be used by the new key store:
- os: use OS default credentials storage (default).
- file: use encrypted file-based store.
- test: use password-less key store (highly insecure).
2019-12-11 09:45:26 +00:00
..
auth Merge PR #5359: Params Validation 2019-12-10 11:48:57 -05:00
bank Merge PR #5249: Support for sending funds to the community pool - Part I 2019-12-10 14:09:22 -05:00
crisis Merge PR #5359: Params Validation 2019-12-10 11:48:57 -05:00
distribution Merge PR #5384: Fund Community Pool -- Part II 2019-12-10 23:02:15 -05:00
evidence Merge PR #5359: Params Validation 2019-12-10 11:48:57 -05:00
genaccounts Merge PR #5203: Add more linters 2019-10-17 09:47:35 -04:00
genutil keyring's encrypted file backend integration (#5355) 2019-12-11 09:45:26 +00:00
gov Merge PR #5359: Params Validation 2019-12-10 11:48:57 -05:00
mint Merge PR #5359: Params Validation 2019-12-10 11:48:57 -05:00
mock Merge PR #5192: golangcI-lint updates & set static version to 1.19 2019-10-14 11:43:19 -04:00
params Merge PR #5359: Params Validation 2019-12-10 11:48:57 -05:00
simulation Merge PR #5359: Params Validation 2019-12-10 11:48:57 -05:00
slashing Merge PR #5359: Params Validation 2019-12-10 11:48:57 -05:00
staking Merge PR #5359: Params Validation 2019-12-10 11:48:57 -05:00
supply Merge PR #5379: New docs V1 (merge master-docs to master) 2019-12-10 09:29:46 -05:00
upgrade Merge PR #5294: Upgrade Module Spec 2019-11-29 15:17:13 -05:00
README.md Merge PR #5379: New docs V1 (merge master-docs to master) 2019-12-10 09:29:46 -05:00

README.md

parent
order
false

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 application.
  • Bank - Token transfer functionalities.
  • Governance - On-chain proposals and voting.
  • Staking - Proof-of-stake layer for public blockchains.
  • Slashing - Validator punishment mechanisms.
  • Distribution - Fee distribution, and staking token provision distribution.
  • Crisis - Halting the blockchain under certain circumstances (e.g. if an invariant is broken).
  • Mint - Creation of new units of staking token.
  • Params - Globally available parameter store.
  • Supply - Total token supply of the chain.

To learn more about the process of building modules, visit the building modules reference documentation.