Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify how to guide arrangement #443

Merged
merged 1 commit into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
78 changes: 42 additions & 36 deletions .vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
},
],
},
],
},
{
Expand Down
2 changes: 1 addition & 1 deletion guides/zkml.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
Loading