cosmos-sdk/docs/core
Riccardo Montagnin 81cfc6cc85
fix: implement Amino serialization for x/authz and x/feegrant (#11224)
* fix: Add RegisterLegacyAminoCodec for authz/feegrant

* add module name

* Fix GetSignByes, add tests

* removed module names from registered messages to match other modules

* added interfaces and concrete types registration

* unseal amino instances to allow external grant and authorization registration

* fixed messages tests

* allow to register external types into authz modulecdc

* use legacy.Cdc instead of ModuleCdc inside x/authz

* move the legacy.Cdc initialization outside init function

* added serialization docs

* Update docs/core/encoding.md

Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>

* added the Ledger specification

* fixed tests

Co-authored-by: Amaury M <1293565+amaurym@users.noreply.github.com>
2022-02-22 12:03:01 +01:00
..
README.md
baseapp.md docs: Code blocks in SDK docs are broken (#11189) 2022-02-14 23:39:35 +01:00
baseapp_state-begin_block.png
baseapp_state-checktx.png
baseapp_state-commit.png
baseapp_state-deliver_tx.png
baseapp_state-initchain.png
baseapp_state_types.png
cli.md docs: Code blocks in SDK docs are broken (#11189) 2022-02-14 23:39:35 +01:00
context.md docs: Code blocks in SDK docs are broken (#11189) 2022-02-14 23:39:35 +01:00
encoding.md fix: implement Amino serialization for x/authz and x/feegrant (#11224) 2022-02-22 12:03:01 +01:00
events.md docs: Code blocks in SDK docs are broken (#11189) 2022-02-14 23:39:35 +01:00
grpc_rest.md docs: Code blocks in SDK docs are broken (#11189) 2022-02-14 23:39:35 +01:00
node.md docs: Code blocks in SDK docs are broken (#11189) 2022-02-14 23:39:35 +01:00
ocap.md docs: Code blocks in SDK docs are broken (#11189) 2022-02-14 23:39:35 +01:00
proto-docs.md docs: Improve markdownlint configuration (#11104) 2022-02-10 12:07:01 +00:00
runtx_middleware.md chore: move from relative links to git links (#11238) 2022-02-21 13:34:28 +01:00
simulation.md docs: Improve markdownlint configuration (#11104) 2022-02-10 12:07:01 +00:00
store.md chore: move from relative links to git links (#11238) 2022-02-21 13:34:28 +01:00
telemetry.md chore: remove duplicate abci metrics (#10884) 2022-01-06 17:03:09 +00:00
transactions.md docs: Code blocks in SDK docs are broken (#11189) 2022-02-14 23:39:35 +01:00
upgrade.md docs: Improve markdownlint configuration (#11104) 2022-02-10 12:07:01 +00:00

README.md

Core Concepts

This repository contains reference documentation on the core concepts of the Cosmos SDK.

  1. BaseApp
  2. Transaction
  3. Context
  4. Node Client
  5. Store
  6. Encoding
  7. gRPC, REST and Tendermint Endpoints
  8. Command-Line Interface
  9. Events
  10. Telemetry
  11. Object-Capabilities
  12. RunTx recovery middleware
  13. Simulation
  14. Protobuf documentation
  15. In-Place Store Migrations

After reading about the core concepts, check the IBC documentation to learn more about the IBC core concepts and how to integrate IBC in your application.