cosmos-sdk/x
Chirantan Ekbote 5b8a5ea690 staking: Fix potential division-by-zero
`v.DelegatorShares` can be 0 so don't allow division in that case.
2022-10-18 15:29:49 -05:00
..
auth Revert "fix: add base account getter (backport #12154) (#12161)" (#12213) 2022-06-09 16:58:34 -04:00
authz feat: add query.GenericFilteredPaginated (backport #12253) (#12371) 2022-06-28 12:42:01 -04:00
bank chore(types): add MustAccAddressFromBech32 util func (backport #12201) (#12205) 2022-06-09 15:01:04 -04:00
capability style(capability)!: update go doc comments and remove BeginBlocker (backport #9845) (#9846) 2021-08-04 14:42:21 +02:00
crisis fix: update index of crisis invariant check logs (backport #12208) (#12210) 2022-06-10 10:28:25 +02:00
distribution chore(types): add MustAccAddressFromBech32 util func (backport #12201) (#12205) 2022-06-09 15:01:04 -04:00
evidence style: lint go and markdown (backport #10060) (#10473) 2021-11-11 21:29:29 +01:00
feegrant chore(types): add MustAccAddressFromBech32 util func (backport #12201) (#12205) 2022-06-09 15:01:04 -04:00
genutil fix: Add validation on create gentx (backport #11693) (#11698) 2022-04-20 11:56:15 -04:00
gov chore(types): add MustAccAddressFromBech32 util func (backport #12201) (#12205) 2022-06-09 15:01:04 -04:00
mint style: lint go and markdown (backport #10060) (#10473) 2021-11-11 21:29:29 +01:00
params perf: Speedup to params simulation (#9481) 2021-06-17 07:42:07 +00:00
simulation fix: Update RequestInitChain in Simulations (#10171) 2021-09-16 20:39:16 +02:00
slashing chore: remove direct reliance on staking from slashing (backport #12177) (#12181) 2022-06-07 17:34:57 -04:00
staking staking: Fix potential division-by-zero 2022-10-18 15:29:49 -05:00
upgrade fix: Refactor GetLastCompletedUpgrade [v0.45.x] (#12264) 2022-06-15 12:03:23 -04:00
README.md chore: add markdownlint to lint commands (#9353) 2021-05-27 15:31:04 +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 application.
  • 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.
  • Evidence - Evidence handling for double signing, misbehaviour, etc.
  • 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.