-
Notifications
You must be signed in to change notification settings - Fork 3
/
sidebar-crypto-3.js
125 lines (124 loc) · 3.4 KB
/
sidebar-crypto-3.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
export default {
crypto3: [
{
type: 'doc',
label: 'Crypto3',
id: 'intro'
},
{
type: 'doc',
label: 'Portal overview',
id: 'guides/portal-overview'
},
{
type: 'doc',
label: 'Environment setup',
id: 'guides/environment-setup'
},
{
type: 'doc',
label: 'Quickstart (scaffold)',
id: 'guides/quickstart'
},
{
type: 'doc',
label: 'Installation',
id: 'guides/installation'
},
{
type: 'category',
label: 'IDE configuration',
collapsible: true,
collapsed: false,
items: [
{
type: 'doc',
label: 'VS Code',
id: 'guides/ide-configuration/vscode'
},
{
type: 'doc',
label: 'CLion',
id: 'guides/ide-configuration/clion'
},
{
type: 'doc',
label: 'Sublime text',
id: 'guides/ide-configuration/sublime-text'
},
]
},
{
type: 'doc',
label: 'Debugging',
id: 'guides/debugging'
},
// {
// type: 'category',
// label: 'Modules',
// collapsible: true,
// collapsed: false,
// items: [
// {
// type: 'category',
// label: 'C++',
// collapsible: true,
// collapsed: true,
// link: { type: 'doc', id: 'cpp/index' },
// items: [
// {
// type: 'autogenerated',
// dirName: 'cpp'
// }
// ]
// },
// ]
// },
{
type: 'category',
label: 'Examples',
collapsible: true,
collapsed: true,
items: [
{
type: 'doc',
label: 'BLS signature',
id: 'examples/examples/bls-signature'
},
{
type: 'doc',
label: 'BLS weighted threshold signature',
id: 'examples/examples/bls-weighted-threshold-signature'
},
]
},
{
type: 'category',
label: 'Misc',
collapsible: true,
collapsed: false,
items: [
{
type: 'doc',
label: 'Glossary',
id: 'misc/glossary',
},
{
type: 'doc',
label: 'Contributing',
id: 'misc/contributing',
},
{
type: 'doc',
label: 'Code of conduct',
id: 'misc/code-of-conduct',
},
{
type: 'doc',
label: 'Contact',
id: 'misc/contact',
},
],
},
],
};