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

Commit 62b3fbe

Browse files
committed
cleanups and changes after review
1 parent 1527dfb commit 62b3fbe

6 files changed

Lines changed: 23 additions & 226 deletions

File tree

.vitepress/config.ts

Lines changed: 22 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@ function sidebarHome() {
193193
items: [
194194
{ text: "Rollkit stack", link: "/learn/stack" },
195195
{ text: "Transaction flow", link: "/learn/transaction-flow" },
196+
{ text: "Configuration", link: "/learn/config" },
196197
],
197198
},
198199
{
@@ -205,8 +206,13 @@ function sidebarHome() {
205206
items: [
206207
{ text: "Overview", link: "/learn/sequencing/overview" },
207208
{ text: "Single", link: "/learn/sequencing/single" },
208-
{ text: "Based", link: "/learn/sequencing/based" },
209-
{ text: "Forced Inclusion", link: "/learn/sequencing/forced-inclusion" },
209+
],
210+
},
211+
{
212+
text: "Execution",
213+
collapsed: true,
214+
items: [
215+
{ text: "ABCI", link: "/learn/execution/abci" },
210216
],
211217
},
212218
{
@@ -241,28 +247,6 @@ function sidebarHome() {
241247
},
242248
],
243249
},
244-
{
245-
text: "Sequencing",
246-
collapsed: true,
247-
items: [
248-
{
249-
text: "Overview",
250-
link: "/learn/sequencing/overview",
251-
},
252-
{
253-
text: "Single",
254-
link: "/learn/sequencing/single",
255-
},
256-
{
257-
text: "Based",
258-
link: "/learn/sequencing/based",
259-
},
260-
{
261-
text: "Forced Inclusion",
262-
link: "/learn/sequencing/forced-inclusion",
263-
},
264-
],
265-
},
266250
{
267251
text: "Execution",
268252
collapsed: true,
@@ -284,6 +268,20 @@ function sidebarHome() {
284268
},
285269
],
286270
},
271+
{
272+
text: "EVM",
273+
collapsed: true,
274+
items: [
275+
{
276+
text: "EVM Single Sequencer",
277+
link: "/guides/evm/single",
278+
},
279+
{
280+
text: "EVM reth state backup",
281+
link: "/guides/evm/reth-backup",
282+
},
283+
]
284+
},
287285
{
288286
text: "Run a Full Node",
289287
link: "/guides/full-node",
@@ -304,22 +302,6 @@ function sidebarHome() {
304302
text: "Create genesis for your rollup",
305303
link: "/guides/create-genesis",
306304
},
307-
{
308-
text: "Configuration",
309-
link: "/guides/config",
310-
},
311-
{
312-
text: "EVM Single Sequencer",
313-
link: "/guides/evm-single",
314-
},
315-
{
316-
text: "EVM Based Sequencer",
317-
link: "/guides/evm-based",
318-
},
319-
{
320-
text: "EVM reth state backup",
321-
link: "/guides/evm-reth-backup",
322-
},
323305
{
324306
text: "Metrics",
325307
link: "/guides/metrics",

guides/evm/evm-based.md

Lines changed: 0 additions & 182 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.

learn/data-availability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Data Availability in Rollkit
22

3-
Data availability (DA) is a core component of Rollkit's modular rollup framework. In Rollkit, data availability ensures that all transaction data and block information required to verify the rollup's state is accessible to anyone running a node or light client.
3+
Data availability (DA) is a core of Rollkit's. Rollkit utilize's data availability ensures that all transaction data and block information required to verify the rollup's state is accessible to anyone running a node or light client.
44

55
Learn more about data availability:
66

learn/sequencing/based.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)