forked from worldwide-asset-exchange/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebar.ts
360 lines (359 loc) · 20.5 KB
/
sidebar.ts
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
export default [
{
text: 'Learn',
items: [
{
text: 'About WAX',
link: '/learn/about-wax/',
collapsed: true,
items: [
{
text: 'What is WAX?',
link: '/learn/about-wax/what-is-wax',
},
{
text: 'Why WAX?',
link: '/learn/about-wax/why-wax',
},
{
text: 'What is WAXP Token?',
link: '/learn/about-wax/what-is-waxp-token',
},
{
text: 'How does WAX Work?',
link: '/learn/about-wax/wax-consensus',
},
{
text: 'WAX Interoparability',
link: '/learn/about-wax/wax-interoparability',
},
],
},
],
},
{
text: 'Build',
items: [
{
text: 'dApp Development',
link: '/build/dapp-development/',
collapsed: true,
items: [
{
text: 'Setup local Environment',
link: '/build/dapp-development/setup-local-dapp-environment/',
collapsed: true,
items: [
{text: 'Start a Local Node', link: '/build/dapp-development/setup-local-dapp-environment/dapp_local'},
{text: 'Blockchain Environments', link: '/build/dapp-development/setup-local-dapp-environment/dapp_environments'},
{text: 'Create a Wallet', link: '/build/dapp-development/setup-local-dapp-environment/dapp_wallet'},
{text: 'Access Local API', link: '/build/dapp-development/setup-local-dapp-environment/dapp_api'},
],
},
{
text: 'Docker Setup',
link: '/build/dapp-development/docker-setup/',
collapsed: true,
items: [
{text: 'Run a WAX Container', link: '/build/dapp-development/docker-setup/docker_qstart_getstarted'},
{text: 'Run Commands', link: '/build/dapp-development/docker-setup/docker_qstart_use'},
{text: 'Manage Container', link: '/build/dapp-development/docker-setup/docker_qstart_manage'},
],
},
{
text: 'WAX Blockchain Setup',
link: '/build/dapp-development/wax-blockchain-setup/',
collapsed: true,
items: [
{text: 'Install WAX Blockchain', link: '/build/dapp-development/wax-blockchain-setup/blockchain_install'},
{text: 'Uninstall WAX', link: '/build/dapp-development/wax-blockchain-setup/blockchain_uninstall'},
{text: 'Verify Your Install', link: '/build/dapp-development/wax-blockchain-setup/blockchain_verify'},
],
},
{
text: 'Smart Contract Development',
link: '/build/dapp-development/smart-contract-quickstart/',
collapsed: true,
items: [
{text: 'Smart Contract Basics', link: '/build/dapp-development/smart-contract-quickstart/smart_contract_basics'},
{text: 'Create Accounts', link: '/build/dapp-development/smart-contract-quickstart/dapp_account'},
{text: 'Create a Smart Contract', link: '/build/dapp-development/smart-contract-quickstart/dapp_hello_world'},
{text: 'Deploy to Blockchain', link: '/build/dapp-development/smart-contract-quickstart/dapp_dev_deploy'},
{text: 'Custom Permissions', link: '/build/dapp-development/smart-contract-quickstart/custom_permission'},
],
},
{
text: 'WAX CDT',
link: '/build/dapp-development/wax-cdt/',
collapsed: true,
items: [
{text: 'Install WAX-CDT', link: '/build/dapp-development/wax-cdt/cdt_install'},
{text: 'Uninstall WAX-CDT', link: '/build/dapp-development/wax-cdt/cdt_uninstall'},
{text: 'Sample Contracts', link: '/build/dapp-development/wax-cdt/cdt_use'},
{text: 'Build Tools', link: '/build/dapp-development/wax-cdt/cdt_cpp'},
{text: 'WAX-CDT Options', link: '/build/tools/cdt_options'},
],
},
{
text: 'Deploy on WAX',
link: '/build/dapp-development/deploy-dapp-on-wax/',
collapsed: true,
items: [
{text: 'WAX-CDT Deploy', link: '/build/dapp-development/deploy-dapp-on-wax/deploy_source'},
{text: 'Docker Deploy', link: '/build/dapp-development/deploy-dapp-on-wax/deploy_docker'},
{text: 'Deploy an EOS dApp on WAX', link: '/build/dapp-development/deploy-dapp-on-wax/convert_eos'},
],
},
],
},
{
text: 'MyCloudWallet',
link: '/build/cloud-wallet/',
collapsed: true,
items: [
{
text: 'wax.js',
link: '/build/cloud-wallet/waxjs/',
collapsed: true,
items: [
{text: 'Cloud Wallet Quickstart', link: '/build/cloud-wallet/waxjs/waxjs_qstart'},
{text: 'Install WaxJS', link: '/build/cloud-wallet/waxjs/waxjs_install'},
{text: 'Use WaxJS', link: '/build/cloud-wallet/waxjs/waxjs_use'},
{text: 'WaxJS Demo', link: '/build/cloud-wallet/waxjs/waxjs_demo'},
{text: 'Temp Accounts', link: '/build/cloud-wallet/waxjs/waxjs_tempaccounts'}
],
},
{
text: 'boost.wax',
link: '/build/cloud-wallet/boost-wax',
collapsed: true,
},
{
text: 'WalletConnect',
link: '/build/cloud-wallet/wallet-connect/',
collapsed: true,
items: [
{text: 'Setting Up WalletConnect', link: '/build/cloud-wallet/wallet-connect/setting-up-walletconnect'},
{text: 'Developer Guide', link: '/build/cloud-wallet/wallet-connect/walletconnect-developer-guide'},
{text: 'Integration Guide', link: '/build/cloud-wallet/wallet-connect/walletconnect-integration-guide'},
],
},
],
},
{
text: 'Tutorials',
link: '/build/tutorials/',
collapsed: true,
items: [
{
text: 'How to create farming game',
link: '/build/tutorials/howto-create_farming_game/',
collapsed: true,
items: [
{text: 'How to make a game on WAX. General concepts', link: '/build/tutorials/howto-create_farming_game/Part1'},
{text: 'Creating a farmable object or item in AtomicAssets standard', link: '/build/tutorials/howto-create_farming_game/Part2'},
{text: 'Farming NFT creation on Atomic Hub', link:'/build/tutorials/howto-create_farming_game/Part3'},
{text: 'What are resources and tokens in our game creation process', link:'/build/tutorials/howto-create_farming_game/Part4'},
{text: 'NFT Staking', link:'/build/tutorials/howto-create_farming_game/Part5'},
{text: 'Types of Farming and farming process', link:'/build/tutorials/howto-create_farming_game/Part6'},
{text: 'Creating GUI for WAX game, staking and farming', link:'/build/tutorials/howto-create_farming_game/Part7'},
{text: 'Upgrades of game items in WAX games', link:'/build/tutorials/howto-create_farming_game/Part8'},
{text: 'Blends of NFTs for WAX games', link:'/build/tutorials/howto-create_farming_game/Part9'},
{text: 'Implementing avatars in WAX games', link:'/build/tutorials/howto-create_farming_game/Part10'},
{text: 'UI for Blends, upgrades and avatars', link:'/build/tutorials/howto-create_farming_game/Part11'},
{text: 'Token and resource swaps', link:'/build/tutorials/howto-create_farming_game/Part12'},
{text: 'Token Staking and Voting in games', link:'/build/tutorials/howto-create_farming_game/Part13'},
{text: 'Governance in games', link:'/build/tutorials/howto-create_farming_game/Part14'},
{text: 'GUI for swaps, staking and governance', link:'/build/tutorials/howto-create_farming_game/Part15'},
{text: 'Leaderboards in games', link:'/build/tutorials/howto-create_farming_game/Part16'},
{text: 'Quest systems in game', link:'/build/tutorials/howto-create_farming_game/Part17'},
{text: 'GUI for quests and leaderboards', link:'/build/tutorials/howto-create_farming_game/Part18'}
]
},
{
text: 'Tic-Tac-Toe Game',
link: '/build/tutorials/tic-tac-toe-game/',
collapsed: true,
items: [
{text: 'Game Client', link: '/build/tutorials/tic-tac-toe-game/client'},
{text: 'Smart Contract', link: '/build/tutorials/tic-tac-toe-game/smart-contract'}
],
},
{
text: 'AtomicAssets Guide',
link: '/build/tutorials/howto_atomicassets/',
collapsed: true,
items: [
{text: 'Collection Structure', link: '/build/tutorials/howto_atomicassets/collection_struct'},
{text: 'Collections', link: '/build/tutorials/howto_atomicassets/collection_js'},
{text: 'Schemas', link: '/build/tutorials/howto_atomicassets/schemas_js'},
{text: 'Templates', link: '/build/tutorials/howto_atomicassets/templates_js'},
{text: 'Mint NFT', link: '/build/tutorials/howto_atomicassets/mint_nft'},
{text: 'Transfer NFT', link: '/build/tutorials/howto_atomicassets/transfer_nft'},
{text: 'Mutable Data', link: '/build/tutorials/howto_atomicassets/mutabledata'},
],
},
{
text: 'SimpleAssets Guide',
link: '/build/tutorials/howto_simpleassets/',
collapsed: true,
items: [
{text: 'Structure', link: '/build/tutorials/howto_simpleassets/nft_basics'},
{text: 'Mint NFT', link: '/build/tutorials/howto_simpleassets/nft_use'},
{text: 'Deploy NFT Smart Contract', link: '/build/tutorials/howto_simpleassets/nft_deploy'},
{text: 'Test NFT Smart Contract', link: '/build/tutorials/howto_simpleassets/nft_test'},
],
},
{
text: 'WAX RNG',
link: '/build/tutorials/wax-rng/',
items: ['/build/tutorials/wax-rng/rng_install'],
},
{
text: 'Create RNG Contract',
link: '/build/tutorials/create-wax-rng-smart-contract/',
collapsed: true,
items: [
{text: 'RNG Basics', link: '/build/tutorials/create-wax-rng-smart-contract/rng_basics'},
{text: 'Calling RNG Contract', link: '/build/tutorials/create-wax-rng-smart-contract/rng_sample'},
{text: 'Test Your RNG Contract', link: '/build/tutorials/create-wax-rng-smart-contract/rng_test'},
{text: 'Deploy Your Smart Contract', link: '/build/tutorials/create-wax-rng-smart-contract/rng_deploy'},
],
},
{
text: 'WharfKit',
link: '/build/tutorials/wharfkit/',
collapsed: true,
items: [
{text: 'Wharfkit in React', link: '/build/tutorials/wharfkit/howto_react'},
{text: 'Wharfkit Multi-Session', link: '/build/tutorials/wharfkit/multisession'},
],
},
{
text: 'SS verification',
link: '/build/tutorials/server-side-verification',
},
{
text: 'How To Explore WAX Blockchain',
link: '/build/tutorials/howto_blockexplorer'
}
],
},
{
text: 'Tools',
link: '/build/tools/',
collapsed: true,
items: [
{text: 'Blockchain Tools', link: '/build/tools/blockchain_tools'},
{text: 'Supported OS', link: '/build/tools/os'},
{text: 'WAX-CDT Options', link: '/build/tools/cdt_options'},
{text: 'Ricardian Contracts', link: '/build/tools/ricardian_contract'},
{text: 'Ricardian Clauses', link: '/build/tools/ricardian_clause'},
],
},
{
text: 'API Reference',
link: '/build/api-reference/',
collapsed: true,
items: [
{text: 'WAX-RPC API', link: '/build/api-reference/rpc_api'},
{text: 'WAX-CDT API', link: '/build/api-reference/cdt_api'},
{
text: 'dFuse',
link: '/build/api-reference/dfuse',
collapsed: true,
items: [
'/build/api-reference/dfuse/dfuse_example',
],
}
],
},
],
},
{
text: 'Operate',
items: [
{
text: 'Basics',
link: '/operate/wax-bp/',
collapsed: true,
items: [
{text: 'chains.json', link: '/operate/wax-bp/chains-json'},
{text: 'bp.json', link: '/operate/wax-bp/bp-json'}
],
},
{
text: 'Atomic Assets API',
link: '/operate/atomic-assets/',
collapsed: true,
items: [
{text: 'Setup', link: '/operate/atomic-assets/setup-wax-atomic-api-node'},
{text: 'Optimize', link: '/operate/atomic-assets/optimise-restore-wax-atomic-api-node'}
],
},
{
text: 'Guides',
link: '/operate/wax-infrastructure/',
collapsed: true,
items: [
{text: 'Set Up a Testnet Node', link: '/operate/wax-infrastructure/wax-testnet-node'},
{text: 'Set Up a Testnet Producer Node', link: '/operate/wax-infrastructure/wax-testnet-block-producer'},
{text: 'Set Up a Mainnet Node', link: '/operate/wax-infrastructure/wax-mainnet-node'},
{text: 'Set Up a State-Hisory Node', link: '/operate/wax-infrastructure/wax-mainnet-ship-node'},
{text: 'Using Snapshots', link: '/operate/wax-infrastructure/wax-snapshots'},
{text: 'Set Up a Load Balancer', link: '/operate/wax-infrastructure/wax-mainnet-node-load-balancer'},
{text: 'Visualise Metrics from a WAX Load Balancer', link: '/operate/wax-infrastructure/wax-visualise-load-balancer-metrics'},
{text: 'How To Mitigate API Abuse', link: '/operate/wax-infrastructure/wax-mainnet-node-mitigate-abuse'},
{text: 'WAX Files and Folders', link: '/operate/wax-infrastructure/working-with-wax-software-files'},
{text: 'Optimising RAM and Disk', link: '/operate/wax-infrastructure/wax-ram-disk-utilisation'},
{text: 'Optimise Disk Utilisation with ZFS Deduplication', link: '/operate/wax-infrastructure/wax-optimise-disk-utilisation-zfs-dedup'},
{text: 'Custom Permissions', link: '/operate/wax-infrastructure/wax-account-custom-permissions'},
{text: 'How To Route API Queries', link: '/operate/wax-infrastructure/wax-route-specific-api-queries'},
{text: 'Set Up Websocket Support on a Load Balancer', link: '/operate/wax-infrastructure/wax-websocket-load-balancer'},
{text: 'Set Up Full/Partial History Nodes (Hyperion)', link: '/operate/wax-infrastructure/hyperion-guide'},
{text: 'Set Up an Atomic API Node', link: '/operate/wax-infrastructure/atomic-api-guide'},
{text: 'Securely peer with WireGuard', link: '/operate/wax-infrastructure/wax-securely-peer-with-wireguard'},
{text: 'Creating a WAX Price Oracle Service', link: '/operate/wax-infrastructure/creating-a-wax-price-oracle-service-bash-python'},
{text: 'Monitor/Unregister WAX Producer with systemd', link: '/operate/wax-infrastructure/monitor-and-unregister-wax-producer-with-systemd-while-you-sleep'}
],
},
{
text: 'WAX Hyperion History',
link: '/operate/wax-hyperion/',
collapsed: true,
items: [
{text: 'Introduction', link: '/operate/wax-hyperion/wax-intro-to-hyperion-full-history'},
{text: 'Hyperion Components', link: '/operate/wax-hyperion/wax-build-hyperion-software-components'},
{text: 'Configure Hyperion Components', link: '/operate/wax-hyperion/wax-config-hyperion-software-components'},
{text: 'Running Hyperion', link: '/operate/wax-hyperion/wax-running-hyperion'},
{text: 'Set Up Hyperion Cluster', link: '/operate/wax-hyperion/wax-clustering-elasticsearch-for-hyperion'},
{text: 'Rectify Missing Blocks', link: '/operate/wax-hyperion/wax-rectify-missing-blocks-in-hyperion'},
{text: 'History Indexer Scaling', link: '/operate/wax-hyperion/wax-hyperion-indexer-scaling'},
{text: 'Streaming with a Load Balancer', link: '/operate/wax-hyperion/wax-hyperion-streaming-load-balancer'},
{text: 'Repair Indexed Data', link: '/operate/wax-hyperion/wax-hyperion-repair-indexed-data'},
{text: 'Using Data Tiers', link: '/operate/wax-hyperion/wax-hyperion-data-tiers'}
],
},
{
text: 'WAX API Services',
link: '/operate/wax-api-services/',
collapsed: true,
},
],
},
{
text: 'Create',
items: [
{
text: 'Awesome WAX',
link: '/create/awesome-wax/',
collapsed: true,
},
{
text: 'Documentation',
link: '/create/docs/',
collapsed: true,
},
],
},
];