-
Notifications
You must be signed in to change notification settings - Fork 5
/
sidebars.js
executable file
·39 lines (36 loc) · 1.33 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
const sdkSidebar = require('./sdkSidebar.json')
/**
* Sidebar configuration.
*/
module.exports = {
main: {
'Getting Started': ['getting-started/create-comit-app', 'getting-started/comit-infrastructure',
{
"type": "category",
"label": "Your first COMIT-app",
"items": [
'tutorials/write-your-first-comit-app/write-a-comit-app-setup',
'tutorials/write-your-first-comit-app/write-a-comit-app-actor-initialisation',
'tutorials/write-your-first-comit-app/write-a-comit-app-maker-order-create',
'tutorials/write-your-first-comit-app/write-a-comit-app-maker-order-publish',
'tutorials/write-your-first-comit-app/write-a-comit-app-maker-execution',
'tutorials/write-your-first-comit-app/write-a-comit-app-taker-request-order',
'tutorials/write-your-first-comit-app/write-a-comit-app-taker-take-order',
]
}
],
'COMIT JavaScript SDK': sdkSidebar,
'COMIT Protocol': ['comit-protocol/comit-protocol-stack', 'comit-protocol/comit-projects',
{
"type": "category",
"label": "Core Concepts",
"items": [
'core-concepts/atomic-swap-htlc',
'core-concepts/instant-swap',
'core-concepts/privacy-preserving-swap',
'core-concepts/negotiation'
]
}
],
},
};