cosmos-sdk/x
Emmanuel T Odeke d56de85a54
x/gov/simulation: fix wrong NewDecodeStore Proposal decoding + proper tests (#8603)
The code in NewDecodeStore decoded the wrong proposal due
to a typographical error, but the tests used the exact same
value for the key value pairs hence the typo could never be caught.
I noticed it during an audit of the code, and I've fixed the
tests to pass in varying values for the various key value pairs.

Fixes #8570

Co-authored-by: Alessio Treglia <alessio@tendermint.com>
2021-02-17 03:04:43 -08:00
..
auth adr-028 address generation (#8415) 2021-02-15 15:32:51 +00:00
authz x/authz specs (#8499) 2021-02-11 16:56:37 +00:00
bank Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
capability Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
crisis Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
distribution Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
evidence atlas: evidence (#8561) 2021-02-15 13:51:42 +00:00
feegrant Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
genaccounts CLI `migrate` command follow-up: decode & re-encode (#7464) 2020-10-09 19:09:43 +00:00
genutil Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
gov x/gov/simulation: fix wrong NewDecodeStore Proposal decoding + proper tests (#8603) 2021-02-17 03:04:43 -08:00
ibc Modify IBC client governance unfreezing to reflect ADR changes (#8405) 2021-02-16 15:31:40 +00:00
mint Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
params Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
simulation simulation: close opened files and check for error while creating files (#8217) 2020-12-22 13:46:42 +00:00
slashing Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
staking adr-028 address generation (#8415) 2021-02-15 15:32:51 +00:00
upgrade Add in-place store migrations (#8485) 2021-02-10 17:49:31 +00:00
README.md x/authz specs (#8499) 2021-02-11 16:56:37 +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.
  • IBC - IBC protocol for transport, authentication adn ordering.
  • IBC Transfer - Cross-chain fungible token transfer implementation through IBC.
  • 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.