cosmos-sdk/x
Federico Kunze 3022fe9044
x/ibc-transfer: ADR001 source tracing implementation (#6871)
* x/ibc-transfer: ADR001 source tracing implementation

* gRPC proto file

* validation

* fix validation

* import export genesis

* relay.go updates

* gRPC service methods

* client CLI

* update implementation

* build

* trace test

* fix CLI tx args

* genesis import/export tests

* update comments

* update proto files

* GRPC tests

* remove field from packet

* fix coin validation bug

* more validations

* update comments

* minor refactor

* update relay.go

* try fix test

* minor updates

* fix tests

* fix test

* ADR updates and comments

* build

* Apply suggestions from code review

Co-authored-by: Aditya <adityasripal@gmail.com>
Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com>

* address a few comments from review

* gRPC annotations

* update proto files

* Apply suggestions from code review

Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com>

* address comments

* docs and changelog

* sort traces

* final changes to ADR

* client support for full path denom prefixes

* address @AdityaSripal comments

* address TODO

* increase test timeouts

Co-authored-by: Aditya <adityasripal@gmail.com>
Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com>
2020-08-14 17:46:26 -04:00
..
auth tendermint: update to rc3 (#6892) 2020-08-14 13:58:53 -04:00
bank tendermint: update to rc3 (#6892) 2020-08-14 13:58:53 -04:00
capability tendermint: update to rc3 (#6892) 2020-08-14 13:58:53 -04:00
crisis tendermint: update to rc3 (#6892) 2020-08-14 13:58:53 -04:00
distribution tendermint: update to rc3 (#6892) 2020-08-14 13:58:53 -04:00
evidence tendermint: update to rc3 (#6892) 2020-08-14 13:58:53 -04:00
genaccounts Merge PR #5449: Add New constructor for the DecCoin 2020-01-03 15:44:53 -05:00
genutil tendermint: update to rc3 (#6892) 2020-08-14 13:58:53 -04:00
gov tendermint: update to rc3 (#6892) 2020-08-14 13:58:53 -04:00
ibc x/ibc-transfer: ADR001 source tracing implementation (#6871) 2020-08-14 17:46:26 -04:00
ibc-transfer x/ibc-transfer: ADR001 source tracing implementation (#6871) 2020-08-14 17:46:26 -04:00
mint tendermint: update to rc3 (#6892) 2020-08-14 13:58:53 -04:00
params tendermint: update to rc3 (#6892) 2020-08-14 13:58:53 -04:00
simulation tendermint: update to rc3 (#6892) 2020-08-14 13:58:53 -04:00
slashing tendermint: update to rc3 (#6892) 2020-08-14 13:58:53 -04:00
staking tendermint: update to rc3 (#6892) 2020-08-14 13:58:53 -04:00
upgrade tendermint: update to rc3 (#6892) 2020-08-14 13:58:53 -04: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.