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

Commit 1315a55

Browse files
committed
add overview and update config.ts
1 parent b929446 commit 1315a55

2 files changed

Lines changed: 25 additions & 7 deletions

File tree

.vitepress/config.ts

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -209,13 +209,14 @@ function sidebarHome() {
209209
text: "Technical Specifications",
210210
collapsed: true,
211211
items: [
212-
{ text: "block-manager.md", link: "/learn/specs/block-manager" },
213-
{ text: "block-validity.md", link: "/learn/specs/block-validity" },
214-
{ text: "da.md", link: "/learn/specs/da" },
215-
{ text: "full_node.md", link: "/learn/specs/full_node" },
216-
{ text: "header-sync.md", link: "/learn/specs/header-sync" },
217-
{ text: "p2p.md", link: "/learn/specs/p2p" },
218-
{ text: "store.md", link: "/learn/specs/store" },
212+
{ text: "overview", link: "/learn/specs/overview" },
213+
{ text: "block-manager", link: "/learn/specs/block-manager" },
214+
{ text: "block-validity", link: "/learn/specs/block-validity" },
215+
{ text: "da", link: "/learn/specs/da" },
216+
{ text: "full_node", link: "/learn/specs/full_node" },
217+
{ text: "header-sync", link: "/learn/specs/header-sync" },
218+
{ text: "p2p", link: "/learn/specs/p2p" },
219+
{ text: "store", link: "/learn/specs/store" },
219220
],
220221
},
221222
],

specs/overview.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Specs Overview
2+
3+
Welcome to the Rollkit Technical Specifications.
4+
5+
This is comprehensive documentation on the inner components of Rollkit, including data storage, transaction processing, and more. It’s an essential resource for developers looking to understand, contribute to, and leverage the full capabilities of Rollkit.
6+
7+
Each file in this folder covers a specific aspect of the system, from block management to data availability and networking. Use this page as a starting point to explore the technical details and architecture of Rollkit.
8+
9+
## Table of Contents
10+
11+
- [Block Manager](/learn/specs/block-manager.md): Explains the responsibilities and logic of the block manager in Rollkit.
12+
- [Block Validity](/learn/specs/block-validity.md): Details the rules and checks for block validity within the protocol.
13+
- [Data Availability (DA)](/learn/specs/da.md): Describes how Rollkit ensures data availability and integrates with DA layers.
14+
- [Full Node](/learn/specs/full_node.md): Outlines the architecture and operation of a full node in Rollkit.
15+
- [Header Sync](/learn/specs/header-sync.md): Covers the process and protocol for synchronizing block headers.
16+
- [P2P](/learn/specs/p2p.md): Documents the peer-to-peer networking layer and its protocols.
17+
- [Store](/learn/specs/store.md): Provides information about the storage subsystem and data management.

0 commit comments

Comments
 (0)