cosmos-sdk/x
Aditya 3735b182bc
Modular IBC Client (#7028)
* start modular client work

* fix panic

* reuse keeper marshal methods

* readd TODO

* add nil checks for misbehaviour

* address reviews

* address rest of reviews and fix builds

* fixed tests

* address rest of reviews

* fix expired blocks bug

* fix expired bug
2020-08-14 04:47:13 -04:00
..
auth Merge PR #7006: auth: Update AccountRetriever 2020-08-13 10:22:16 -04:00
bank Enable proto JSON generally and remove HybridCodec (#6859) 2020-08-13 13:20:02 +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 upgrade proposal needs tx flags. (#6981) 2020-08-13 15:46:12 +00:00
evidence Enable proto JSON generally and remove HybridCodec (#6859) 2020-08-13 13:20:02 +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 upgrade proposal needs tx flags. (#6981) 2020-08-13 15:46:12 +00:00
ibc Modular IBC Client (#7028) 2020-08-14 04:47:13 -04:00
ibc-transfer Enable proto JSON generally and remove HybridCodec (#6859) 2020-08-13 13:20:02 +00:00
mint Enable proto JSON generally and remove HybridCodec (#6859) 2020-08-13 13:20:02 +00:00
params Enable proto JSON generally and remove HybridCodec (#6859) 2020-08-13 13:20:02 +00:00
simulation Enable proto JSON generally and remove HybridCodec (#6859) 2020-08-13 13:20:02 +00:00
slashing Enable proto JSON generally and remove HybridCodec (#6859) 2020-08-13 13:20:02 +00:00
staking Enable proto JSON generally and remove HybridCodec (#6859) 2020-08-13 13:20:02 +00:00
upgrade upgrade proposal needs tx flags. (#6981) 2020-08-13 15:46:12 +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.