cosmos-sdk/x
Anil Kumar Kammari d55c1a2665
Change address from bytes to bech32 strings (#7242)
* init

* Fix bank proto messages

* missing conversions

* remove casttype for addresses

* Fix tests

* Fix consaddress

* more test fixes

* Fix tests

* fixed tests

* migrate missing proto declarations

* format

* Fix format

* Fix alignment

* Fix more tests

* Fix ibc merge issue

* Fix fmt

* Fix more tests

* Fix missing address declarations

* Fix staking tests

* Fix more tests

* Fix config

* fixed tests

* Fix more tests

* Update staking grpc tests

* Fix merge issue

* fixed failing tests in x/distr

* fixed sim tests

* fixed failing tests

* Fix bugs

* Add logs

* fixed slashing issue

* Fix staking grpc tests

* Fix all bank tests :)

* Fix tests in distribution

* Fix more tests in distr

* Fix slashing tests

* Fix statking tests

* Fix evidence tests

* Fix gov tests

* Fix bug in create vesting account

* Fix test

* remove fmt

* fixed gov tests

* fixed x/ibc tests

* fixed x/ibc-transfer tests

* fixed staking tests

* fixed staking tests

* fixed test

* fixed distribution issue

* fix pagination test

* fmt

* lint

* fix build

* fix format

* revert tally tests

* revert tally tests

* lint

* Fix sim test

* revert

* revert

* fixed tally issue

* fix tests

* revert

* fmt

* refactor

* remove `GetAddress()`

* remove fmt

* revert fmt.Striger usage

* Fix tests

* Fix rest test

* disable interfacer lint check

* make proto-format

* add nolint rule

* remove stray println

Co-authored-by: aleem1314 <aleem.md789@gmail.com>
Co-authored-by: atheesh <atheesh@vitwit.com>
2020-09-25 10:25:37 +00:00
..
auth Change address from bytes to bech32 strings (#7242) 2020-09-25 10:25:37 +00:00
bank Change address from bytes to bech32 strings (#7242) 2020-09-25 10:25:37 +00:00
capability Change address from bytes to bech32 strings (#7242) 2020-09-25 10:25:37 +00:00
crisis Change address from bytes to bech32 strings (#7242) 2020-09-25 10:25:37 +00:00
distribution Change address from bytes to bech32 strings (#7242) 2020-09-25 10:25:37 +00:00
evidence Change address from bytes to bech32 strings (#7242) 2020-09-25 10:25:37 +00:00
genaccounts Update tm pubkey references (#7102) 2020-08-28 16:02:38 +00:00
genutil Change address from bytes to bech32 strings (#7242) 2020-09-25 10:25:37 +00:00
gov Change address from bytes to bech32 strings (#7242) 2020-09-25 10:25:37 +00:00
ibc Change address from bytes to bech32 strings (#7242) 2020-09-25 10:25:37 +00:00
ibc-transfer Change address from bytes to bech32 strings (#7242) 2020-09-25 10:25:37 +00:00
mint Change address from bytes to bech32 strings (#7242) 2020-09-25 10:25:37 +00:00
params Change address from bytes to bech32 strings (#7242) 2020-09-25 10:25:37 +00:00
simulation Merge PR #7251: Cleanup of evidence types 2020-09-08 09:33:53 -07:00
slashing Change address from bytes to bech32 strings (#7242) 2020-09-25 10:25:37 +00:00
staking Change address from bytes to bech32 strings (#7242) 2020-09-25 10:25:37 +00:00
upgrade Change address from bytes to bech32 strings (#7242) 2020-09-25 10:25:37 +00:00
README.md docs: improve IBC guide (#6472) 2020-07-07 06:19:36 -04:00

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.
  • 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.