Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 9913889

Browse files
committed
fix links
1 parent 8c5fc17 commit 9913889

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.vitepress/config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -247,19 +247,19 @@ function sidebarHome() {
247247
items: [
248248
{
249249
text: "Overview",
250-
link: "/guides/sequencing/overview",
250+
link: "/learn/sequencing/overview",
251251
},
252252
{
253253
text: "Single",
254-
link: "/guides/sequencing/single",
254+
link: "/learn/sequencing/single",
255255
},
256256
{
257257
text: "Based",
258-
link: "/guides/sequencing/based",
258+
link: "/learn/sequencing/based",
259259
},
260260
{
261261
text: "Forced Inclusion",
262-
link: "/guides/sequencing/forced-inclusion",
262+
link: "/learn/sequencing/forced-inclusion",
263263
},
264264
],
265265
},

learn/sequencing/overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ It mainly consists of:
2525
An implementation of the sequencing interface mainly acts as a middleware that connects Rollkit rollup and the sequencing layer. It implements the sequencing interface functions described above.
2626
There are several implementations of the sequencor:
2727

28-
* [single-sequencer](/guides/sequencing/single.md) - The simplest and most widely used sequencing model, where a single node (the sequencer) is responsible for ordering transactions and producing blocks.
28+
* [single-sequencer](/learn/sequencing/single.md) - The simplest and most widely used sequencing model, where a single node (the sequencer) is responsible for ordering transactions and producing blocks.
2929

30-
* [based-sequencer](/guides/sequencing/based.md) - A more decentralized model where multiple sequencers work together to order transactions and produce blocks, improving censorship resistance (Not available yet).
30+
* [based-sequencer](/learn/sequencing/based.md) - A more decentralized model where multiple sequencers work together to order transactions and produce blocks, improving censorship resistance (Not available yet).
3131

32-
* [forced-inclusion-sequencer](/guides/sequencing/forced-inclusion.md) - A model that ensures all transactions are included in the rollup, even if they are not ordered by the sequencer, providing strong guarantees against censorship. (Not available yet).
32+
* [forced-inclusion-sequencer](/learn/sequencing/forced-inclusion.md) - A model that ensures all transactions are included in the rollup, even if they are not ordered by the sequencer, providing strong guarantees against censorship. (Not available yet).

0 commit comments

Comments
 (0)