-
Notifications
You must be signed in to change notification settings - Fork 25
/
sidebars.js
144 lines (133 loc) · 3.08 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
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
iips: [
{
type: 'category',
label: 'Idena Improvement Proposals',
link: {
type: 'doc',
id: 'iip/iips',
},
items: [
{
type: 'autogenerated',
dirName: 'iip',
},
],
},
],
developer: [
{
type: 'category',
label: 'Idena app',
link: {
type: 'generated-index',
title: 'Idena app',
//slug: 'developer/send-dna',
description:
'Learn how to use official Idena app in your web3 application',
keywords: ['guides'],
},
items: [
'developer/desktop/sign-in',
'developer/sign',
'developer/send-dna',
'developer/send-invite',
'developer/send-raw',
'developer/desktop/dna-url',
],
},
{
type: 'category',
label: 'Idena node',
link: {
type: 'generated-index',
title: 'Idena node',
description: 'Learn how to run and manage your node',
keywords: ['guides'],
},
items: [
'developer/node/general',
'developer/node/node-rpc',
'developer/node/shared',
],
},
{
type: 'category',
label: 'Smart contracts',
link: {
type: 'doc',
id: 'developer/node/smart-contracts',
},
items: [
'developer/node/quick-start',
'developer/node/idena-sdk-as',
'developer/node/smart-contracts-methods',
{
type: 'category',
label: 'Predefined contracts',
link: {
type: 'generated-index',
title: 'Predefined contracts',
description:
'Learn about predefined contracts built-in into the Idena node',
//slug: '/category/guides',
keywords: ['guides'],
image: '/img/docusaurus.png',
},
items: [
'developer/node/oracle-lock',
'developer/node/refundable-oracle-lock',
'developer/node/multisig',
'developer/node/time-lock',
],
},
],
},
{
type: 'category',
label: 'Architecture',
link: {
type: 'generated-index',
title: 'Idena architecture',
description: 'Learn more about Idena architecture',
keywords: ['guides'],
},
items: [
'developer/validation',
'developer/ipfs/upload',
'developer/identity-bridge',
],
},
],
wp: [
{
type: 'category',
label: 'Whitepaper',
link: {
type: 'doc',
id: 'wp/summary',
},
items: [
'wp/manifesto',
'wp/technology',
'wp/flip-challenge',
'wp/economics',
'wp/roadmap',
],
},
],
community: [
{
type: 'category',
label: 'Community',
link: {
type: 'doc',
id: 'community/resources',
},
items: ['community/channels', 'community/affiliate'],
},
],
};
module.exports = sidebars;