-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
131 lines (122 loc) · 2.5 KB
/
sidebars.js
File metadata and controls
131 lines (122 loc) · 2.5 KB
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
module.exports = {
mySidebar: [
// Normal syntax:
"intro",
{
type: "category",
label: "Overview",
collapsed: false,
items: [
{
type: "doc",
id: "overview/whatIsWalletApiSdk",
},
{
type: "doc",
id: "overview/howDoesItWork",
},
],
},
{
type: "category",
collapsed: false,
label: "Wallet SDK",
items: [
{
type: "doc",
id: "sdk/sdk",
},
{
type: "doc",
id: "sdk/initialization",
},
{
type: "doc",
id: "sdk/auth",
},
{
type: "doc",
id: "sdk/tokens",
},
{
type: "doc",
id: "sdk/swap",
},
{
type: "doc",
id: "sdk/collectibles",
},
{
type: "doc",
id: "sdk/gasless",
},
],
},
{
type: "category",
collapsed: false,
label: "Collective SDK",
items: [
{
type: "doc",
id: "collective-sdk/introduction",
},
{
type: "doc",
id: "collective-sdk/initialization",
},
{
type: "doc",
id: "collective-sdk/collectives",
},
{
type: "doc",
id: "collective-sdk/honeypots",
},
{
type: "doc",
id: "collective-sdk/pools",
},
{
type: "doc",
id: "collective-sdk/contracts",
},
],
},
/* {
type: "category",
label: "Examples",
items: [
{
type: "doc",
id: "examples/createWallet",
},
],
}, */
/* {
type: "link",
label: "Wallet API", // The link label
href: "/walletapi", // The external URL
}, */
{
type: "html",
value:
"<hr style='background-color:#e4aeff'/><strong style='color: #e4aeff'>Additional</strong>",
className: "sidebar-title",
defaultStyle: true,
},
{
type: "link",
label: "Report a Bug", // The link label
href: "https://github.com/liquality/wallet-sdk/issues", // The external URL
className: "bugReport",
},
{
type: "link",
label: "Contribute to Docs", // The link label
href: "https://github.com/liquality/liquality-docs", // The external URL
className: "bugReport",
},
// Shorthand syntax:
],
};