cosmos-sdk/x
atheeshp f87624e9de
Add Grpc gateway annotations (#6918)
* grpc for bank module

* edit module.go

* added annotations for x/auth query proto

* generated gw file

* added grpc gateway for x/staking query proto

* added annotations for evidence

* added annotations for gov query proto

* added annotations

* added annotations for slashing module

* updated annotations

* added annotations for staking module

* added annotations for upgrade query

* annotations added for x/ibc/channel query proto

* added annotations for ibc/connection query proto

* updated annotations

* updated annotations

* annotation changes

* ommitted ibc module

* updated go.mod

* fixed lint issue

* review changes

* review changes

* review changes

* review changes

* go sum changes

* updated annotations

* annotation changes

* Fix proto lint issues

* review changes

* review changes

* review changes

* discussion changes

* review changes

* grpc for bank module

* edit module.go

* added annotations for x/auth query proto

* generated gw file

* added grpc gateway for x/staking query proto

* added annotations for evidence

* added annotations for gov query proto

* added annotations

* added annotations for slashing module

* updated annotations

* added annotations for staking module

* added annotations for upgrade query

* annotations added for x/ibc/channel query proto

* added annotations for ibc/connection query proto

* updated annotations

* updated annotations

* annotation changes

* ommitted ibc module

* updated go.mod

* fixed lint issue

* review changes

* review changes

* review changes

* review changes

* go sum changes

* updated annotations

* annotation changes

* Fix proto lint issues

* review changes

* review changes

* review changes

* discussion changes

* review changes

* fixed conflicts

* review changes

* updated gw files

* lint

* lint

* lint

* added missing annotations

* review changes

* review changes

* review changes

* review changes

Co-authored-by: SaReN <sahithnarahari@gmail.com>
Co-authored-by: Anil Kumar Kammari <anil@vitwit.com>
2020-08-14 10:05:35 +00:00
..
auth Add Grpc gateway annotations (#6918) 2020-08-14 10:05:35 +00:00
bank Add Grpc gateway annotations (#6918) 2020-08-14 10:05:35 +00:00
capability Enable proto JSON generally and remove HybridCodec (#6859) 2020-08-13 13:20:02 +00:00
crisis Enable proto JSON generally and remove HybridCodec (#6859) 2020-08-13 13:20:02 +00:00
distribution Add Grpc gateway annotations (#6918) 2020-08-14 10:05:35 +00:00
evidence Add Grpc gateway annotations (#6918) 2020-08-14 10:05:35 +00:00
genaccounts Merge PR #5449: Add New constructor for the DecCoin 2020-01-03 15:44:53 -05:00
genutil Protobuf Audit: Genesis states (#6978) 2020-08-12 15:48:22 +00:00
gov Add Grpc gateway annotations (#6918) 2020-08-14 10:05:35 +00:00
ibc Add Grpc gateway annotations (#6918) 2020-08-14 10:05:35 +00:00
ibc-transfer types: update coin regex (#7027) 2020-08-14 09:09:53 +00:00
mint Add Grpc gateway annotations (#6918) 2020-08-14 10:05:35 +00:00
params Add Grpc gateway annotations (#6918) 2020-08-14 10:05:35 +00:00
simulation Enable proto JSON generally and remove HybridCodec (#6859) 2020-08-13 13:20:02 +00:00
slashing Add Grpc gateway annotations (#6918) 2020-08-14 10:05:35 +00:00
staking Add Grpc gateway annotations (#6918) 2020-08-14 10:05:35 +00:00
upgrade Add Grpc gateway annotations (#6918) 2020-08-14 10:05:35 +00:00
README.md docs: improve IBC guide (#6472) 2020-07-07 06:19:36 -04: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.
  • 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.