cosmos-sdk/x
Amaury Martiny 82f15f306e
RegisterInterfaces registers service Msg type_urls (#7671)
* Add RegisterMsgServiceDesc

* Refactor newSendTxMsgServiceCmd

* Add test

* Register in all modules

* Remove RegisterMsgServiceDesc from baseapp

* Add explicit error message

* Add comment

* Update comment

* Add test

* Update comment

* Remove duplicate import

* Fix lint

* Forgot vesting

* Fix lint

* Fix test

* Put in types/module

* Put in types/msgservice

* Add comment about panic

* Update baseapp/msg_service_router.go

Co-authored-by: Robert Zaremba <robert@zaremba.ch>

* Update baseapp/msg_service_router.go

Co-authored-by: Robert Zaremba <robert@zaremba.ch>

* Update baseapp/msg_service_router.go

Co-authored-by: Robert Zaremba <robert@zaremba.ch>

* Add comment

* Add better test

* Update baseapp/msg_service_router.go

Co-authored-by: Marie Gauthier <marie.gauthier63@gmail.com>

Co-authored-by: Robert Zaremba <robert@zaremba.ch>
Co-authored-by: Marie Gauthier <marie.gauthier63@gmail.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2020-10-28 19:20:45 +00:00
..
auth RegisterInterfaces registers service Msg type_urls (#7671) 2020-10-28 19:20:45 +00:00
bank RegisterInterfaces registers service Msg type_urls (#7671) 2020-10-28 19:20:45 +00:00
capability Rename RegisterGRPCRoutes (#7696) 2020-10-28 11:39:49 +00:00
crisis RegisterInterfaces registers service Msg type_urls (#7671) 2020-10-28 19:20:45 +00:00
distribution RegisterInterfaces registers service Msg type_urls (#7671) 2020-10-28 19:20:45 +00:00
evidence RegisterInterfaces registers service Msg type_urls (#7671) 2020-10-28 19:20:45 +00:00
genaccounts CLI migrate command follow-up: decode & re-encode (#7464) 2020-10-09 19:09:43 +00:00
genutil Rename RegisterGRPCRoutes (#7696) 2020-10-28 11:39:49 +00:00
gov RegisterInterfaces registers service Msg type_urls (#7671) 2020-10-28 19:20:45 +00:00
ibc RegisterInterfaces registers service Msg type_urls (#7671) 2020-10-28 19:20:45 +00:00
mint Rename RegisterGRPCRoutes (#7696) 2020-10-28 11:39:49 +00:00
params Rename RegisterGRPCRoutes (#7696) 2020-10-28 11:39:49 +00:00
simulation Use any as validator pubkey (#7597) 2020-10-23 12:07:52 +00:00
slashing RegisterInterfaces registers service Msg type_urls (#7671) 2020-10-28 19:20:45 +00:00
staking RegisterInterfaces registers service Msg type_urls (#7671) 2020-10-28 19:20:45 +00:00
upgrade Rename RegisterGRPCRoutes (#7696) 2020-10-28 11:39:49 +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.