diff --git a/.vitepress/config.ts b/.vitepress/config.ts index fe457091f..f3747428a 100644 --- a/.vitepress/config.ts +++ b/.vitepress/config.ts @@ -187,8 +187,6 @@ function sidebarHome() { text: "About Rollkit", link: "/learn/about", }, - { text: "Transaction flow", link: "/learn/transaction-flow" }, - { text: "Configuration", link: "/learn/config" }, { text: "Data Availability", link: "/learn/data-availability", @@ -219,6 +217,8 @@ function sidebarHome() { { text: "Store", link: "/learn/specs/store" }, ], }, + { text: "Transaction flow", link: "/learn/transaction-flow" }, + { text: "Configuration", link: "/learn/config" }, ], }, { diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..8d649d898 --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +# Makefile for docs + +.PHONY: testlink + +testlink: + lychee -b . --verbose --exclude '%23.*' './**/*.md' diff --git a/guides/cometbft-to-rollkit.md b/guides/cometbft-to-rollkit.md index 5cc9f6f58..a4c43236c 100644 --- a/guides/cometbft-to-rollkit.md +++ b/guides/cometbft-to-rollkit.md @@ -10,6 +10,11 @@ import constants from '../.vitepress/constants/constants.js' This guide assumes you have a CometBFT app set up and [Ignite CLI](https://docs.ignite.com) installed. +:::warning +This tutorial is currently being updated to reflect the latest changes using the rollkit ignite app. +Please check back later for the updated version. +::: + ## Install Rollkit {#install-rollkit} You need to install Rollkit in your CometBFT app. Open a terminal in the directory where your app is located and run the following command: @@ -36,10 +41,6 @@ Run the following command to initialize Rollkit: ignite rollkit init ``` -:::warning -This tutorial is being currently update to reflect the latest changes using the rollkit ignite app. -Please check back later for the updated version. -:::