forked from iotaledger/introduction-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.js
126 lines (126 loc) · 2.56 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
module.exports = {
mySidebar: [{
type: 'doc',
id: 'welcome',
label: 'Welcome'
}, {
type: 'doc',
id: 'introduction/what_is_chrysalis',
label: 'What is Chrysalis?'
}, {
type: 'doc',
id: 'introduction/path_to_chrysalis',
label: 'Path to Chrysalis'
},{
type: 'doc',
id: 'firefly/verify_download',
label: 'Verify Download'
},
{
type: 'doc',
id: 'node_software',
label: 'Node Software'
}, {
type: 'category',
label: 'Libraries',
items: [{
type: 'doc',
id: 'libraries/overview',
label: 'Overview'
}, {
type: 'doc',
id: 'libraries/client',
label: 'Client Lib'
}, {
type: 'doc',
id: 'libraries/wallet',
label: 'Wallet Lib'
}, ]
},
{
type: 'category',
label: 'Guides',
items: [{
type: 'doc',
id: 'guides/overview',
label: 'Overview'
},
{
type: 'doc',
id: 'guides/developer',
label: 'Developer'
},
{
type: 'doc',
id: 'guides/exchange',
label: 'Exchange'
},
{
type: 'doc',
id: 'guides/token_migration',
label: 'Token Migration'
},
{
type: 'doc',
id: 'guides/migration_mechanism',
label: 'Migration Mechanism'
},
{
type: 'doc',
id: 'guides/hub_migration',
label: 'Hub Migration'
},
{
type: 'doc',
id: 'guides/backup_security',
label: 'Backup and Security'
},
{
type: 'doc',
id: 'guides/snapshot_validation_bootstrapping',
label: 'Chrysalis Snapshot Validation'
},
]
},
{
type: 'doc',
id: 'mainnet',
label: 'Mainnet'
},
{
type: 'doc',
id: 'devnet',
label: 'Devnet'
},
{
type: 'category',
label: 'Tutorials',
items: [
{
type: 'doc',
id: 'tutorials/one_click_private_tangle',
label: 'Private Tangle'
},
{
type: 'doc',
id: 'tutorials/mainnet_hornet_node_k8s',
label: 'Mainnet Hornet Node K8s'
},]
},
{
type: 'doc',
id: 'protocol_tip',
label: 'Protocol TIPs'
},
{
type: 'doc',
id: 'resources',
label: 'Resources'
},
{
type: 'doc',
id: 'faq',
label: 'FAQ'
},
]
};