This repository has been archived by the owner on Jun 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsidebars.js
155 lines (155 loc) · 3.49 KB
/
sidebars.js
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
module.exports = {
mySidebar: [
{
type: 'doc',
id: 'welcome',
label: 'Welcome'
},
{
type: 'category',
label: 'Explanations',
items:
[
{
type: 'category',
label: 'Chrysalis Update',
items:
[
{
type: 'doc',
id: 'explanations/update/what_is_chrysalis',
label: 'Overview'
},
{
type: 'doc',
id: 'explanations/update/chrysalis_improvements',
label: 'Protocol Improvements'
},
{
type: 'doc',
id: 'explanations/update/path_to_chrysalis',
label: 'Path To Chrysalis'
},
{
type: 'doc',
id: 'explanations/update/migration_mechanism',
label: 'Migration Mechanism'
},
]
},
{
type: 'doc',
id: 'explanations/node_software',
label: 'Node Software'
},
{
type: 'doc',
id: 'explanations/libraries',
label: 'Libraries'
},
{
type: 'doc',
id: 'explanations/protocol_tip',
label: 'TIPs'
},
{
type: 'doc',
id: 'explanations/faq',
label: 'FAQ'
},
]
},
{
type: 'category',
label: 'How Tos',
items:
[
{
type: 'doc',
id: 'how_tos/verify_firefly_download',
label: 'Verify Firefly Download'
},
{
type: 'doc',
id: 'how_tos/backup_security',
label: 'Backup and Security'
},
{
type: 'doc',
id: 'how_tos/exchange',
label: 'Integrate Exchange'
},
{
type: 'doc',
id: 'how_tos/mainnet_hornet_node_k8s',
label: 'Run Hornet On Kubernetes'
},
{
type: 'doc',
id: 'how_tos/one_click_private_tangle',
label: 'Run a Private Tangle'
},
{
type: 'category',
label: 'Migration From IOTA 1.0',
items:
[
{
type: 'doc',
id: 'how_tos/migration/token_migration',
label: 'Token Migration'
},
{
type: 'doc',
id: 'how_tos/migration/snapshot_validation_bootstrapping',
label: 'Snapshot Validation Bootstrapping'
},
{
type: 'doc',
id: 'how_tos/migration/hub_migration',
label: 'Hub Migration'
},
]
},
]
},
{
type: 'category',
label: 'Reference',
items:
[
{
type: 'doc',
id: 'reference/changelog',
label: 'Changelog'
}, {
type: 'doc',
id: 'reference/details',
label: 'Detailed Description'
},
{
type: 'category',
label: 'Networks',
items:
[
{
type: 'doc',
id: 'reference/networks/mainnet',
label: 'Mainnet'
},
{
type: 'doc',
id: 'reference/networks/devnet',
label: 'Devnet'
},
]
},
]
},
{
type: 'doc',
id: 'resources',
label: 'Resources'
},
]
};