Skip to content

Commit

Permalink
docs: add docs on modules (backport #2269) (#2322)
Browse files Browse the repository at this point in the history
docs: add docs on modules (#2269)

* add docs/build folder

* add module structure

* add provider messages to docs -- wip

* add message description to docs

* add provider params

* add consumer params

* remove params.md

* fix links

* add overview

* add IBC channel handshake

* add OnRecvPacket

* move democracy module to build/modules

* remove duplicate democracy module page

* add begin/end-block info

* udpate intro section

* add info on provider state

* add consumer state

* add state intro

* add TODOs

* add CLI

* WIP - add provider CLI, gRPC, REST docs

* fix typos

* add consumer docs wip

* provider docs nits

* consumer docs nits

* consumer docs improvement

* merge main

* add collapsible sections

* update overview

* docs: fix broken docs; cleanup versions (#2321)

* docs: update config and supported verisons

* fix broken config

* fix broken version import

* add back missing image

* expand toc level

* fix broken link

---------

Co-authored-by: Simon Noetzlin <[email protected]>
Co-authored-by: MSalopek <[email protected]>
(cherry picked from commit d0a1398)

# Conflicts:
#	docs/docs/introduction/params.md

Co-authored-by: Marius Poke <[email protected]>
  • Loading branch information
mergify[bot] and mpoke authored Oct 2, 2024
1 parent 2522692 commit 22fef42
Show file tree
Hide file tree
Showing 24 changed files with 4,649 additions and 226 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ release/
docs/tla/states/
*.out
vendor/
build/
/build/
.vscode
.idea
__debug_*
Expand Down
5 changes: 0 additions & 5 deletions docs/build_deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,5 @@ echo "building docusaurus main docs"
cp supported_versions.json versions.json
npm ci && npm run build

# copy "legacy" docs directory into the final build directory
# the directory is in "docs/legacy" of the source branch (legacy-docs-page)
# the build environment must be in "./docs" for this to work as expected
git checkout origin/legacy-docs-page -- legacy
cp -r ./legacy ./build/
mv build ~/output
echo "done building docusaurus main docs"
4 changes: 4 additions & 0 deletions docs/docs/build/_category_.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"label": "Build",
"position": 3
}
22 changes: 22 additions & 0 deletions docs/docs/build/modules/01-overview.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
sidebar_position: 1
---

# Overview

ICS consists of two main modules:

* [x/provider](./02-provider.md)
* Provides to consumer chains updated information of opted in validators.
* Distributes ICS rewards to opted in validators.
* Jails and slashes validators that misbehave on consumer chains.
* [x/consumer](./03-consumer.md)
* Sends to the consensus engine the validator sets received from the provider chain.
* Splits consumer block rewards and sends ICS rewards to the provider chain.
* Notifies the provider chain of downtime infractions.

Note that `x/types` contains types shared by both modules.

In addition, the following modules are added to ICS to extend its functionality:

* [x/democracy](04-democracy.md)
Loading

0 comments on commit 22fef42

Please sign in to comment.