Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.
Closed
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
106 changes: 27 additions & 79 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",
},
{
text: "Based",
Expand All @@ -265,32 +256,20 @@ function sidebarHome() {
text: "Forced Inclusion",
link: "/tutorials/sequencing/forced-inclusion",
},
{
text: "Astria",
link: "/tutorials/sequencing/astria",
},
],
},
{
text: "Execution",
collapsed: true,
items: [
{ text: "CosmWasm", link: "/tutorials/execution/cosmwasm" },
{
text: "EVM",
collapsed: true,
items: [
{ text: "BeaconKit EVM", link: "/tutorials/execution/beaconkit" },
{
text: "Artela EVM++",
link: "/tutorials/execution/artela-evm-plus-plus",
},
{
text: "Contract interaction",
link: "/tutorials/execution/evm-contract-interaction",
},
],
},
// {
// text: "EVM",
// collapsed: true,
// items: [
// // { text: "RETH EVM", link: "/tutorials/execution/reth-evm" },
// ],
// },
],
},
{
Expand All @@ -305,10 +284,6 @@ function sidebarHome() {
text: "Docker Compose",
link: "/tutorials/docker-compose",
},
// {
// text: "Kurtosis",
// link: "/tutorials/kurtosis",
// },
],
},
],
Expand All @@ -317,14 +292,14 @@ 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",
},
{
text: "Run a Full Node",
link: "/guides/full-node",
},
{
text: "Restart your rollup",
link: "/guides/restart-rollup",
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,19 @@ 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: "EVM Single Sequencer",
link: "/guides/evm-single",
},
{
text: "EVM Based Sequencer",
link: "/guides/evm-based",
},
{
text: "Metrics",
link: "/guides/metrics",
},
{
text: "Integrations",
Expand All @@ -388,10 +345,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 +353,6 @@ function sidebarHome() {
},
],
},
// {
// text: "Testnets",
// collapsed: true,
// items: [{ text: "CosmWasm Testnet", link: "/testnets/cosmwasm-testnet" }],
// },
{
text: "Blog",
collapsed: true,
Expand Down
2 changes: 1 addition & 1 deletion blog/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Welcome to our blog! Here, you'll find a variety of articles on a range of topic

## Table of contents

- [Sovereign rollups on Bitcoin with Rollkit](/blog/sovereign-rollups-on-bitcoin)
- [Sovereign Applications on Bitcoin with Rollkit](/blog/sovereign-rollups-on-bitcoin)
- [Rollkit: The First Sovereign Rollup Framework](/blog/rollkit-the-first-sovereign-rollup-framework.md)

Stay tuned for more exciting content!
37 changes: 0 additions & 37 deletions guides/block-times.md

This file was deleted.

2 changes: 1 addition & 1 deletion guides/cometbft-to-rollkit.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ ignite rollkit init

## Initialize Rollkit CLI Configuration {#initialize-rollkit-cli-configuration}

Next, you'll need to initialize the Rollkit CLI configuration by generating the `rollkit.toml` file. This file is crucial for Rollkit to understand the structure of your rollup.
Next, you'll need to initialize the Rollkit CLI configuration by generating the `rollkit.toml` file. This file is crucial for Rollkit to understand the structure of your chain.

To create the `rollkit.toml` configuration, use this command:

Expand Down
Loading