* docs: improve IBC guide * remove module specs * capability spec * update capability spec * move cap to concepts * remove module specs * split IBC section * wip integration.md * complete integration.md * format integration.md * docs updates * Apply suggestions from code review Co-authored-by: colin axner <25233464+colin-axner@users.noreply.github.com> * fix Next links * further readings Co-authored-by: colin axner <25233464+colin-axner@users.noreply.github.com>
23 lines
737 B
Markdown
23 lines
737 B
Markdown
<!--
|
|
order: false
|
|
parent:
|
|
order: 5
|
|
-->
|
|
|
|
# Building Modules
|
|
|
|
This repository contains documentation on concepts developers need to know in order to build modules for Cosmos SDK applications.
|
|
|
|
1. [Introduction to Cosmos SDK Modules](./intro.md)
|
|
2. [`AppModule` Interface and Module Manager](./module-manager.md)
|
|
3. [Messages and Queries](./messages-and-queries.md)
|
|
4. [`Handler`s - Processing Messages](./handler.md)
|
|
5. [`Querier`s - Processing Queries](./querier.md)
|
|
6. [BeginBlocker and EndBlocker](./beginblock-endblock.md)
|
|
7. [`Keeper`s](./keeper.md)
|
|
8. [Invariants](./invariants.md)
|
|
9. [Genesis](./genesis.md)
|
|
10. [Module Interfaces](./module-interfaces.md)
|
|
11. [Standard Module Structure](./structure.md)
|
|
12. [Errors](./errors.md)
|