Skip to content

Commit

Permalink
chore: scaffold custom IBC light client development guide (#2860)
Browse files Browse the repository at this point in the history
  • Loading branch information
charleenfei committed Dec 5, 2022
1 parent 816ef50 commit 4e8c126
Show file tree
Hide file tree
Showing 10 changed files with 77 additions and 0 deletions.
50 changes: 50 additions & 0 deletions docs/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,56 @@ module.exports = {
},
],
},
{
title: "IBC Light Client Developer Guide",
children: [
{
title: "Overview",
directory: false,
path: "/light-clients/overview.html",
},
{
title: "ClientState",
directory: false,
path: "light-clients/client-state.html",
},
{
title: "ConsensusState",
directory: false,
path: "/light-clients/consensus-state.html",
},
{
title: "Existence/Non-Existence Proofs",
directory: false,
path: "/light-clients/proofs.html",
},
{
title: "Updates Handling",
directory: false,
path: "/light-clients/update.html",
},
{
title: "Misbehaviour Handling",
directory: false,
path: "/light-clients/misbehaviour.html",
},
{
title: "Upgrades Handling",
directory: false,
path: "/light-clients/upgrade.html",
},
{
title: "Proposal Handling",
directory: false,
path: "/light-clients/proposal.html",
},
{
title: "Genesis Handling",
directory: false,
path: "/light-clients/genesis.html",
},
],
},
{
title: "IBC Middleware Modules",
children: [
Expand Down
3 changes: 3 additions & 0 deletions docs/ibc/light-clients/client-state.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<!--
order: 2
-->
3 changes: 3 additions & 0 deletions docs/ibc/light-clients/consensus-state.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<!--
order: 3
-->
3 changes: 3 additions & 0 deletions docs/ibc/light-clients/genesis.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<!--
order: 9
-->
3 changes: 3 additions & 0 deletions docs/ibc/light-clients/misbehaviour.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<!--
order: 6
-->
3 changes: 3 additions & 0 deletions docs/ibc/light-clients/overview.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<!--
order: 1
-->
3 changes: 3 additions & 0 deletions docs/ibc/light-clients/proofs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<!--
order: 4
-->
3 changes: 3 additions & 0 deletions docs/ibc/light-clients/proposal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<!--
order: 8
-->
3 changes: 3 additions & 0 deletions docs/ibc/light-clients/update.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<!--
order: 5
-->
3 changes: 3 additions & 0 deletions docs/ibc/light-clients/upgrade.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<!--
order: 7
-->

0 comments on commit 4e8c126

Please sign in to comment.