cosmos-sdk/x
Cory 4e73e0f817
Update proto files & definitions in accordance with ADR023 (#6413)
* consolidate proto files into single directory, turn on PACKAGE_DIRECTORY_MATCH linting

* add third_party root for third party proto files

* move ibc proto files to top level folder, rename .proto files to types.proto as before

* update protocgen script, and run code generation

* move vesting proto definition to cosmos namespace, rename from types.proto in alignment with buf.build naming conventions

* update Makefile so proto dependencies are set with new structure when updated

* add comment for sed usage in makefile

* remove unused aliases of proto generated types

* add settings.json instructions to contributing.md for including protobuf paths

Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
Co-authored-by: Aaron Craelius <aaron@regen.network>
2020-06-18 10:04:26 -07:00
..
auth Update proto files & definitions in accordance with ADR023 (#6413) 2020-06-18 10:04:26 -07:00
bank Update proto files & definitions in accordance with ADR023 (#6413) 2020-06-18 10:04:26 -07:00
capability Update proto files & definitions in accordance with ADR023 (#6413) 2020-06-18 10:04:26 -07:00
crisis Update proto files & definitions in accordance with ADR023 (#6413) 2020-06-18 10:04:26 -07:00
distribution Update proto files & definitions in accordance with ADR023 (#6413) 2020-06-18 10:04:26 -07:00
evidence Update proto files & definitions in accordance with ADR023 (#6413) 2020-06-18 10:04:26 -07:00
genaccounts Merge PR #5449: Add New constructor for the DecCoin 2020-01-03 15:44:53 -05:00
genutil x/auth: remove alias.go usage (#6440) 2020-06-17 14:42:27 -04:00
gov Update proto files & definitions in accordance with ADR023 (#6413) 2020-06-18 10:04:26 -07:00
ibc Update proto files & definitions in accordance with ADR023 (#6413) 2020-06-18 10:04:26 -07:00
ibc-transfer Update proto files & definitions in accordance with ADR023 (#6413) 2020-06-18 10:04:26 -07:00
mint Update proto files & definitions in accordance with ADR023 (#6413) 2020-06-18 10:04:26 -07:00
params Update proto files & definitions in accordance with ADR023 (#6413) 2020-06-18 10:04:26 -07:00
simulation Update x/gov to use Any (#6147) 2020-05-19 20:17:29 +00:00
slashing Update proto files & definitions in accordance with ADR023 (#6413) 2020-06-18 10:04:26 -07:00
staking Update proto files & definitions in accordance with ADR023 (#6413) 2020-06-18 10:04:26 -07:00
upgrade Update proto files & definitions in accordance with ADR023 (#6413) 2020-06-18 10:04:26 -07: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.