cosmos-sdk/x
Aaron Craelius 712d23740f
Migrate x/auth cmd's to TxGenerator marshaling (#6391)
* Migrate encode, decode, and broadcast cmd's to use TxGenerator marshal methods

* Fix tests, add EncodingConfig

* Add simapp/encoding.go and wire up with simcli

* add godocs

* fix tests

* Debugging CLI Tests

* Fix integration test

* 6391 - lint issues and code coverage (#6414)

* fixed lint issue of "txEncodeRespStr"

* added tests for encode.go

* WIP: added tests for decode.go

* added txEncoder at bytes

* updated decode test

* updated txBytes to use TxEncoder in decoder test

* added a require after TxEncoder

* removed file save

* debug decode command

* fixed decode tests

* added decode cli

* updated encode and decode in a single file

* separated decode test from encode test

* review changes

* removed register interface

* review change

* Fix tests

* WIP add test for tx sign

* removed commented code

* Fix flags

* WIP add test for sign

* Address review suggestions

* fixed command issue

* Add tests for TxEncoder

* Revert sign changes

* Fix TxEncoder tests

* Fix GetSign Cmd

* Add tx test

* Remove duplicate validation

* Add tests for TxDecoder

* Fix tests

* Fix tests

* Output to clientCtx.Output

* Fix cli_tests

Co-authored-by: atheeshp <59333759+atheeshp@users.noreply.github.com>
Co-authored-by: atheesh <atheesh@vitwit.com>
Co-authored-by: anilCSE <anil@vitwit.com>
Co-authored-by: sahith-narahari <sahithnarahari@gmail.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2020-06-18 20:29:41 +00:00
..
auth Migrate x/auth cmd's to TxGenerator marshaling (#6391) 2020-06-18 20:29:41 +00:00
bank Merge PR #6449: Initial Metrics 2020-06-18 14:12:44 -04:00
capability Update proto files & definitions in accordance with ADR023 (#6413) 2020-06-18 10:04:26 -07:00
crisis Merge PR #6449: Initial Metrics 2020-06-18 14:12:44 -04:00
distribution Merge PR #6449: Initial Metrics 2020-06-18 14:12:44 -04:00
evidence Migrate x/auth cmd's to TxGenerator marshaling (#6391) 2020-06-18 20:29:41 +00:00
genaccounts Merge PR #5449: Add New constructor for the DecCoin 2020-01-03 15:44:53 -05:00
genutil x/auth: remove alias.go usage (#6440) 2020-06-17 14:42:27 -04:00
gov Merge PR #6449: Initial Metrics 2020-06-18 14:12:44 -04:00
ibc Update proto files & definitions in accordance with ADR023 (#6413) 2020-06-18 10:04:26 -07:00
ibc-transfer Update proto files & definitions in accordance with ADR023 (#6413) 2020-06-18 10:04:26 -07:00
mint Merge PR #6449: Initial Metrics 2020-06-18 14:12:44 -04:00
params Update proto files & definitions in accordance with ADR023 (#6413) 2020-06-18 10:04:26 -07:00
simulation Update x/gov to use Any (#6147) 2020-05-19 20:17:29 +00:00
slashing Merge PR #6449: Initial Metrics 2020-06-18 14:12:44 -04:00
staking Merge PR #6449: Initial Metrics 2020-06-18 14:12:44 -04:00
upgrade Merge PR #6449: Initial Metrics 2020-06-18 14:12:44 -04:00
README.md Merge PR #5463: docs: add link to iavl documentation 2020-01-02 10:25:09 -05: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.
  • 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.