Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 12 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
74 changes: 5 additions & 69 deletions .vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ function nav() {
{ text: "Learn", link: "/learn/intro" },
{ text: "Tutorials", link: "/tutorials/quick-start" },
{ text: "How To Guides", link: "/guides/overview" },
// { text: "Testnets", link: "/testnets/cosmwasm-testnet" },
{ text: "Blog", link: "/blog/overview" },
];
}
Expand Down Expand Up @@ -218,7 +217,7 @@ function sidebarHome() {
text: "Quick start guide",
link: "/tutorials/quick-start",
},
{ text: "Build a chain", link: "/tutorials/wordle" },
{ text: "Build a chain", link: "/tutorials/gm-world" },
{
text: "DA",
collapsed: true,
Expand All @@ -235,10 +234,6 @@ function sidebarHome() {
text: "Celestia",
link: "/tutorials/da/celestia-da",
},
{
text: "Avail",
link: "/tutorials/da/avail-da",
},
],
},
{
Expand All @@ -250,12 +245,8 @@ function sidebarHome() {
link: "/tutorials/sequencing/overview",
},
{
text: "Local",
link: "/tutorials/sequencing/local",
},
{
text: "Centralized",
link: "/tutorials/sequencing/centralized",
text: "Single",
link: "/tutorials/sequencing/single",
},
Comment on lines +248 to 250
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Verification agent

🧩 Analysis chain

Fix the empty "single sequencer" page.

According to the PR comments, the "single sequencer" page is empty, but it's being linked here in the navigation. Ensure that the content for /tutorials/sequencing/single is properly implemented before merging this PR.


🏁 Script executed:

#!/bin/bash
# Check if the single sequencer page exists and has content
if [ -f "tutorials/sequencing/single.md" ]; then
  echo "File exists. Checking content..."
  content_size=$(wc -c < tutorials/sequencing/single.md)
  if [ "$content_size" -lt 100 ]; then
    echo "WARNING: File exists but may not have sufficient content (size: $content_size bytes)"
  else
    echo "File has content (size: $content_size bytes)"
  fi
else
  echo "ERROR: File does not exist!"
fi

Length of output: 323


Implement content for the “Single Sequencer” tutorial page

Our verification shows that while the navigation entry in .vitepress/config.ts correctly links to /tutorials/sequencing/single, the target file is essentially empty:

  • File: tutorials/sequencing/single.md
    • Exists but only ~19 bytes in size (placeholder)

Please populate single.md with the full tutorial content (overview, code examples, explanations, etc.) before merging this PR.

🤖 Prompt for AI Agents
In .vitepress/config.ts around lines 248 to 250, the navigation links to the
"single sequencer" tutorial page at /tutorials/sequencing/single, but the
corresponding markdown file tutorials/sequencing/single.md is nearly empty with
only a placeholder. To fix this, fully implement the content of single.md by
adding a comprehensive tutorial including an overview, code examples, and
explanations so that the linked page is not empty and provides value to users.

{
text: "Based",
Expand All @@ -265,10 +256,6 @@ function sidebarHome() {
text: "Forced Inclusion",
link: "/tutorials/sequencing/forced-inclusion",
},
{
text: "Astria",
link: "/tutorials/sequencing/astria",
},
],
},
{
Expand All @@ -280,11 +267,7 @@ function sidebarHome() {
text: "EVM",
collapsed: true,
items: [
{ text: "BeaconKit EVM", link: "/tutorials/execution/beaconkit" },
{
text: "Artela EVM++",
link: "/tutorials/execution/artela-evm-plus-plus",
},
// { text: "RETH EVM", link: "/tutorials/execution/reth-evm" },
{
text: "Contract interaction",
link: "/tutorials/execution/evm-contract-interaction",
Expand All @@ -305,10 +288,6 @@ function sidebarHome() {
text: "Docker Compose",
link: "/tutorials/docker-compose",
},
// {
// text: "Kurtosis",
// link: "/tutorials/kurtosis",
// },
],
},
],
Expand All @@ -317,10 +296,6 @@ function sidebarHome() {
text: "How To Guides",
collapsed: true,
items: [
{
text: "Use the Rollkit CLI",
link: "/guides/use-rollkit-cli",
},
{
text: "Use Ignite to create a Rollkit app",
link: "/guides/ignite-rollkit",
Expand All @@ -333,10 +308,6 @@ function sidebarHome() {
text: "Reset your chain's state",
link: "/guides/reset-state",
},
{
text: "Run a rollup full node",
link: "/guides/full-node",
},
{
text: "CometBFT into a Rollkit app",
link: "/guides/cometbft-to-rollkit",
Expand All @@ -347,33 +318,7 @@ function sidebarHome() {
},
{
text: "Configuration",
collapsed: true,
items: [
{
text: "Configure gas price",
link: "/guides/gas-price",
},
{
text: "Configure max pending blocks",
link: "/guides/max-pending-blocks",
},
{
text: "Configure DA chain block sync time",
link: "/guides/da-block-time",
},
{
text: "Change speed of block production",
link: "/guides/block-times",
},
{
text: "Use lazy sequencing (aggregation)",
link: "/guides/lazy-sequencing",
},
{
text: "Configure Prometheus metrics",
link: "/guides/metrics",
},
],
link: "/guides/config",
},
{
text: "Integrations",
Expand All @@ -388,10 +333,6 @@ function sidebarHome() {
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 All @@ -400,11 +341,6 @@ function sidebarHome() {
},
],
},
// {
// text: "Testnets",
// collapsed: true,
// items: [{ text: "CosmWasm Testnet", link: "/testnets/cosmwasm-testnet" }],
// },
{
text: "Blog",
collapsed: true,
Expand Down
37 changes: 0 additions & 37 deletions guides/block-times.md

This file was deleted.

Loading