From 62cbe8f2611b59c0fbe6075abb290a6e820a16e8 Mon Sep 17 00:00:00 2001 From: Manav Aggarwal Date: Mon, 9 Sep 2024 11:03:01 +0200 Subject: [PATCH] Change how to guide arrangement --- .vitepress/config.ts | 78 ++++++++++++++++++++++++-------------------- guides/zkml.md | 2 +- 2 files changed, 43 insertions(+), 37 deletions(-) diff --git a/.vitepress/config.ts b/.vitepress/config.ts index d1cada647..87bc5e0a5 100644 --- a/.vitepress/config.ts +++ b/.vitepress/config.ts @@ -266,30 +266,30 @@ function sidebarHome() { text: "How To Guides", collapsed: true, items: [ + { + text: "Use the Rollkit CLI", + link: "/guides/use-rollkit-cli", + }, + { + text: "Connect to a local DA", + link: "/guides/connect-local-da", + }, + { + text: "Create genesis for your rollup", + link: "/guides/create-genesis", + }, + { + text: "Restart your rollup", + link: "/guides/restart-rollup", + }, + { + text: "Run as a full and sequencer node", + link: "/guides/full-and-sequencer-node", + }, { text: "Configuration", collapsed: true, items: [ - { - text: "Use the Rollkit CLI", - link: "/guides/use-rollkit-cli", - }, - { - text: "Connect to a local DA", - link: "/guides/connect-local-da", - }, - { - text: "Create genesis for your rollup", - link: "/guides/create-genesis", - }, - { - text: "Restart your rollup", - link: "/guides/restart-rollup", - }, - { - text: "Run as a full and sequencer node", - link: "/guides/full-and-sequencer-node", - }, { text: "Configure gas price", link: "/guides/gas-price", @@ -313,22 +313,28 @@ function sidebarHome() { ], }, { - text: "Test and deploy smart-contracts", - link: "/guides/cw-orch", - }, - { text: "Add zkML to your rollup", link: "/guides/zkml" }, - { - text: "Add an IBC connection to your rollup", - link: "/guides/ibc-connection", - }, - { - text: "Integrate Range with your rollup", - link: "/guides/rollkit-monitoring", - }, - { - text: "Use IBC token (TIA) as gas token in your rollup", - link: "/guides/use-tia-for-gas", - }, + text: "Integrations", + collapsed: true, + items: [ + { + text: "Test and deploy cosmwasm smart-contracts", + link: "/guides/cw-orch", + }, + { text: "Add zkML to your EVM rollup", link: "/guides/zkml" }, + { + text: "Add an IBC connection to your rollup", + link: "/guides/ibc-connection", + }, + { + text: "Integrate Range with your rollup", + link: "/guides/rollkit-monitoring", + }, + { + text: "Use IBC token (TIA) as gas token in your rollup", + link: "/guides/use-tia-for-gas", + }, + ], + }, ], }, { diff --git a/guides/zkml.md b/guides/zkml.md index db9955d15..6225e080d 100644 --- a/guides/zkml.md +++ b/guides/zkml.md @@ -12,7 +12,7 @@ This approach not only secures the verification process of machine learning mode ## Prerequisites -- An operational [Polaris EVM](/tutorials/polaris-evm.md) using Rollkit (see next step) +- An operational [EVM](/tutorials/beaconkit.md) using Rollkit (see next step) - A [Sindri](https://sindri.app) API key, which can be obtained [here](https://hen4zp9gxq3.typeform.com/to/hJHlUF8c?typeform-source=sindri.app) - Python 3.10+ installed as well as the [Sindri Python SDK](https://sindri.app/docs/reference/sdk/python/) (more information below)