Skip to content

clean: re-organize the DA and Sequencing folders #590

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

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
Open
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
80 changes: 36 additions & 44 deletions .vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,26 @@ function sidebarHome() {
items: [
{ text: "Rollkit stack", link: "/learn/stack" },
{ text: "Transaction flow", link: "/learn/transaction-flow" },
{ text: "Configuration", link: "/learn/config" },
],
},
{
text: "Data Availability",
link: "/learn/data-availability",
},
{
text: "Sequencing",
collapsed: true,
items: [
{ text: "Overview", link: "/learn/sequencing/overview" },
{ text: "Single", link: "/learn/sequencing/single" },
],
},
{
text: "Execution",
collapsed: true,
items: [
{ text: "ABCI", link: "/learn/execution/abci" },
],
},
{
Expand All @@ -218,41 +238,15 @@ function sidebarHome() {
collapsed: true,
items: [
{
text: "Overview",
link: "/guides/da/overview",
},
{
text: "Local DA",
text: "Deploy A Local DA",
link: "/guides/da/local-da",
},
{
text: "Celestia",
text: "Connect to Celestia",
link: "/guides/da/celestia-da",
},
],
},
{
text: "Sequencing",
collapsed: true,
items: [
{
text: "Overview",
link: "/guides/sequencing/overview",
},
{
text: "Single",
link: "/guides/sequencing/single",
},
{
text: "Based",
link: "/guides/sequencing/based",
},
{
text: "Forced Inclusion",
link: "/guides/sequencing/forced-inclusion",
},
],
},
{
text: "Execution",
collapsed: true,
Expand All @@ -274,6 +268,20 @@ function sidebarHome() {
},
],
},
{
text: "EVM",
collapsed: true,
items: [
{
text: "EVM Single Sequencer",
link: "/guides/evm/single",
},
{
text: "EVM reth state backup",
link: "/guides/evm/reth-backup",
},
]
},
{
text: "Run a Full Node",
link: "/guides/full-node",
Expand All @@ -294,22 +302,6 @@ function sidebarHome() {
text: "Create genesis for your rollup",
link: "/guides/create-genesis",
},
{
text: "Configuration",
link: "/guides/config",
},
{
text: "EVM Single Sequencer",
link: "/guides/evm-single",
},
{
text: "EVM Based Sequencer",
link: "/guides/evm-based",
},
{
text: "EVM reth state backup",
link: "/guides/evm-reth-backup",
},
{
text: "Metrics",
link: "/guides/metrics",
Expand Down
76 changes: 0 additions & 76 deletions guides/da/overview.md

This file was deleted.

182 changes: 0 additions & 182 deletions guides/evm-based.md

This file was deleted.

File renamed without changes.
File renamed without changes.
3 changes: 0 additions & 3 deletions guides/sequencing/based.md

This file was deleted.

3 changes: 0 additions & 3 deletions guides/sequencing/forced-inclusion.md

This file was deleted.

1 change: 0 additions & 1 deletion guides/sequencing/single.md

This file was deleted.

Loading