-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsidebars-state-committees.ts
129 lines (127 loc) · 3.2 KB
/
sidebars-state-committees.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
docsSidebar: [
{
type: "doc",
label: "Overview",
id: "overview",
},
{
type: "doc",
label: "Quickstart",
id: "quickstart",
},
{
type: "category",
label: "Architecture",
link: { type: "doc", id: "architecture/architecture-overview" },
items: [
{
type: "doc",
label: "Key Components",
id: "architecture/key-components",
},
],
},
{
type: "doc",
label: "Inductive State Proofs",
id: "inductive-state-proofs",
},
{
type: "doc",
label: "Slashing Conditions",
id: "slashing",
},
{
type: "category",
label: "Operator Guide",
link: {
type: "generated-index",
title: "Overview",
description:
"This guide provides a brief overview about the information needed to configure and run an attestation node on testnet and mainnet network using the CLI.",
},
collapsed: false,
items: [
{
type: "doc",
label: "Supported Chains",
id: "operator-guide/supported-chains",
},
{
type: "doc",
label: "System Requirements",
id: "operator-guide/system-requirements",
},
{
type: "category",
label: "Run an Attestation Node using CLI",
link: {
type: "generated-index",
title: "Run an Attestation Node using CLI",
},
collapsed: true,
items: [
{
type: "doc",
label: "Prerequisite Installations",
id: "run-node/prerequisite-installation",
},
{
type: "doc",
label: "Configuration",
id: "run-node/configuration",
},
{
type: "doc",
label: "Commands",
id: "run-node/commands",
},
{
type: "doc",
label: "Scripts",
id: "run-node/scripts",
},
{
type: "doc",
label: "Set up Keystore",
id: "run-node/setup-keystore",
},
{
type: "doc",
label: "Register Operator",
id: "run-node/register-operator",
},
{
type: "doc",
label: "Deploy Attestation Node",
id: "run-node/deploy",
},
{
type: "doc",
label: "Monitoring",
id: "run-node/monitoring",
},
{
type: "doc",
label: "Troubleshooting",
id: "run-node/troubleshooting",
},
{
type: "doc",
label: "Deregister Operator",
id: "run-node/deregister-operator",
},
],
},
{
type: "doc",
label: "Contract Addresses",
id: "operator-guide/contract-addresses",
},
],
},
],
};
export default sidebars;