cosmos-sdk/x
SaReN f92f6c9dd1
Add CLI tests for simd, distribution (#6095)
* Added cli integration base setup

* Added cmd to simapp

* Fixed ci-lint issues

* Fixed ci-lint issues

* Addressed changes in Makefile

* Updated simd to latest

* Removed testnet and replay commands

* Modified tx command for simcli

* Did code cleanup

* Removed duplication in Makefile

* Refactored cli_test

* Added build-sim to Makefile

* Added test-cli to circleci

* Added tests for staking txns

* Addressed format issues

* refctored tests code

* Added tests for send, staking

* Removed test_hepers file

* Moved test_cover to contrib

* Added codec in fixtures

* Migrated tests to respective modules

* Exported helper methods

* Moved helpers to bank

* Added codec to fixtures

* Migrated tests to modules

* Removed auth helpers from staking

* Did minor code cleanup

* Added test-cli to Makefile

* Updated github actions

* Did code refactor

* Fixed github actions for cli-test

* Added tests for recover keys and fee deduction

* Did minor code cleanup

* Added build flag to cli_tests

* Moved cli_test to tests

* Modified path in Makefile

* Updated codec std in fixtures

* Added doc for cli tests

* Remove ibc genesis validation

* Fix issue number

* Added missing imports

* Add tests for distribution and simd

* Modified naming for test functions

* Added test for withdraw rewards

* Modified test function names

* Fixed import format

* Migrated helpers to package cli

* Fixed github test actions

* Fixed test coverage in actions

* Added build sim to actions

* Apply Alessio patch for tests

* Removed unused imports

* Added init for go tests

* try fix tests

* goimports what wasn't goimports'd

* try fix ci

* add relevant tags to integration tests

* run integration tests separately

* use go build -o flag and let compiler gemerate the binary with the
right extension for the HOST platform

rename cli-test to test-integration

* update ci

* rename

Co-authored-by: atheesh <atheesh1>
Co-authored-by: kaustubhkapatral <54210167+kaustubhkapatral@users.noreply.github.com>
Co-authored-by: Aaron Craelius <aaron@regen.network>
Co-authored-by: anilCSE <anil@vitwit.com>
Co-authored-by: Alessio Treglia <alessio@tendermint.com>
2020-05-01 20:16:17 +00:00
..
auth x/ibc: fix missing return statement (#6099) 2020-04-29 22:36:34 -04:00
bank Add CLI tests for simd, distribution (#6095) 2020-05-01 20:16:17 +00:00
capability x/capability: simulations (#6062) 2020-04-30 15:07:43 +00:00
crisis Merge PR #6010: Merge x/supply into x/bank 2020-04-20 11:22:12 -04:00
distribution Add CLI tests for simd, distribution (#6095) 2020-05-01 20:16:17 +00:00
evidence x/ibc: fix missing return statement (#6099) 2020-04-29 22:36:34 -04:00
genaccounts Merge PR #5449: Add New constructor for the DecCoin 2020-01-03 15:44:53 -05:00
genutil server: remove deprecated UpgradeOldPrivValFile (#6079) 2020-04-27 16:08:44 +00:00
gov x/ibc: fix missing return statement (#6099) 2020-04-29 22:36:34 -04:00
ibc Merge PR #6112: Fix error code registration 2020-05-01 10:56:08 -04:00
mint Merge pull request #6085: Move codec/std to std 2020-04-27 15:40:50 -04:00
params Merge PR #6005: x/params: Raw Parameter Querying 2020-04-16 12:22:58 -04:00
simulation Jonathan/5988 sim params consensus 2 (#6051) 2020-04-22 18:24:13 +00:00
slashing x/ibc: fix missing return statement (#6099) 2020-04-29 22:36:34 -04:00
staking Add CLI tests for simd, distribution (#6095) 2020-05-01 20:16:17 +00:00
upgrade Merge PR #5993: Tx Client Migration: x/upgrade 2020-04-16 15:33:57 -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.