forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
navconfig.json
212 lines (212 loc) · 5.24 KB
/
navconfig.json
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
{
"sideMenu": {
"title": "QUICK LINKS",
"items": [
{
"label": "DevNet",
"link": "explore/devnet"
},
{
"label": "Examples",
"link": "explore/examples"
},
{
"label": "Prototypes",
"link": "explore/prototypes"
}
]
},
"docs": {
"learn": [
{
"label": "About Sui",
"fileName": "learn/about-sui",
"title": "About Sui",
"items": [
{
"label": "Sui Glossary",
"fileName": "learn/sui-glossary"
},
{
"label": "Sui Compared to Other Blockchains",
"fileName": "learn/sui-compared"
},
{
"label": "Why Move?",
"fileName": "learn/why-move"
},
{
"label": "How Sui Move differs from Core Move",
"fileName": "learn/sui-move-diffs"
},
{
"label": "Understand Sui Security",
"fileName": "learn/sui-security"
},
{
"label": "Sui White Paper",
"link": "https://github.com/MystenLabs/sui/blob/main/doc/paper/sui.pdf",
"external": true
}
]
},
{
"label": "How Sui Works",
"fileName": "learn/how-sui-works",
"title": "How Sui Works",
"items": [
{
"label": "Manage Objects",
"fileName": "build/objects"
},
{
"label": "Conduct Transactions",
"fileName": "build/transactions"
},
{
"label": "Understand Validators",
"fileName": "learn/architecture/validators"
},
{
"label": "Sui Consensus Engine",
"fileName": "learn/architecture/consensus"
}
]
},
{
"label": "Sui Tokenomics",
"fileName": "learn/tokenomics/index",
"title": "Sui Tokenomics",
"items": [
{
"label": "Sui Token",
"fileName": "learn/tokenomics/sui-token"
},
{
"label": "Sui Gas Pricing",
"fileName": "learn/tokenomics/gas-pricing"
},
{
"label": "Sui Storage Fund",
"fileName": "learn/tokenomics/storage-fund"
},
{
"label": "Proof-of-Stake",
"fileName": "learn/tokenomics/proof-of-stake"
},
{
"label": "Tokenomics White Paper",
"link": "https://github.com/MystenLabs/sui/blob/main/doc/paper/tokenomics.pdf",
"external": true
}
]
}
],
"build": [
{
"label": "Install Sui",
"fileName": "build/install"
},
{
"label": "Write Smart Contracts with Move",
"fileName": "build/move"
},
{
"label": "Use Sui CLI",
"fileName": "build/cli-client"
},
{
"label": "Program with Objects",
"fileName": "build/programming-with-objects/index",
"title": "Program with Objects",
"items": [
{
"label": "Object Basics",
"fileName": "build/programming-with-objects/ch1-object-basics"
},
{
"label": "Using Objects",
"fileName": "build/programming-with-objects/ch2-using-objects"
},
{
"label": "Immutable Objects",
"fileName": "build/programming-with-objects/ch3-immutable-objects"
},
{
"label": "Object Wrapping",
"fileName": "build/programming-with-objects/ch4-object-wrapping"
},
{
"label": "Child Objects",
"fileName": "build/programming-with-objects/ch5-child-objects"
}
]
},
{
"label": "Use Sui RPC Server",
"fileName": "build/json-rpc"
},
{
"label": "Employ SuiJSON Format",
"fileName": "build/sui-json"
},
{
"label": "Run a Fullnode",
"fileName": "build/fullnode"
},
{
"label": "Subscribe to Events",
"fileName": "build/pubsub"
}
],
"explore": [
{
"label": "DevNet",
"fileName": "explore/devnet"
},
{
"label": "Tutorial",
"fileName": "explore/tutorials"
},
{
"label": "Prototypes",
"fileName": "explore/prototypes"
},
{
"label": "Examples",
"fileName": "explore/examples"
},
{
"label": "Panzerdogs x Sui",
"fileName": "explore/panzerdogs"
},
{
"label": "SoWork x Sui",
"fileName": "explore/sowork"
}
],
"contribute": [
{
"label": "Frequently Asked Questions",
"fileName": "contribute/faq"
},
{
"label": "Logging",
"fileName": "contribute/observability"
},
{
"label": "Research Papers",
"fileName": "contribute/research-papers"
},
{
"label": "Code of Conduct",
"fileName": "contribute/code-of-conduct"
},
{
"label": "About Mysten Labs",
"link": "https://mystenlabs.com/",
"external": true
}
]
}
}