Skip to content
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ module.exports = {
{
title: "Legacy Tutorials",
children: [
{
title: "IBC Hello World",
path: "/hello-world/tutorial/",
directory: true,
},
{
title: "Voter",
path: "/voter/",
Expand Down Expand Up @@ -199,6 +204,7 @@ module.exports = {
],
],
patterns: [
'hello-world/tutorial/*.md',
'burner-chain/*.md',
'README.md',
'nameservice/tutorial/*.md',
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ layout: home
title: Cosmos SDK Tutorials
description: Tutorials for the Cosmos SDK
sections:
- title: IBC Hello World
desc: Build a Hello World blockchain app as an IBC module. Learn how to use the relayer to connect two blockchains with each other and use IBC packets to transfer data from one blockchain to another.
url: /hello-world/tutorial/
difficulty: beginner
tags:
- starport
- stargate
- title: Voter
desc: Build a voting application with a web-based UI.
url: /voter/
Expand Down
Loading