-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathsidebarGeneral.ts
More file actions
75 lines (74 loc) · 2.46 KB
/
sidebarGeneral.ts
File metadata and controls
75 lines (74 loc) · 2.46 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
import {SidebarsConfig} from '@docusaurus/plugin-content-docs';
export const sidebarGeneral: SidebarsConfig = {
general: [
{
type: 'doc',
label: 'Overview',
id: 'general/README',
},
{
type: 'category',
label: 'Oasis Network',
description: 'The Oasis Network is a Layer 1 decentralized blockchain network designed to be uniquely scalable, privacy-first and versatile.',
collapsible: false,
link: {
type: 'doc',
id: 'general/oasis-network/README',
},
items: [
'general/oasis-network/token-metrics-and-distribution',
'general/oasis-network/papers',
'general/oasis-network/faq',
],
},
{
type: 'category',
label: 'Manage your Tokens',
description: 'The native token on Oasis Mainnet is called ROSE. Learn how to manage them.',
collapsible: false,
link: {
type: 'doc',
id: 'general/manage-tokens/README',
},
items: [
'general/manage-tokens/terminology',
'general/manage-tokens/staking-and-delegating',
{
type: 'category',
label: 'ROSE Wallet',
link: {
type: 'generated-index',
slug: 'general/manage-tokens/oasis-wallets',
},
items: [
{
type: 'doc',
label: 'Web',
id: 'general/manage-tokens/oasis-wallets/web'
},
{
type: 'doc',
label: 'Browser Extension',
id: 'general/manage-tokens/oasis-wallets/browser-extension'
}
]
},
{
type: 'category',
label: '3rd Party Wallets and Services',
description: "There is a number of 3rd party services, tools and wallets out there which support the Oasis network. Some of them are categorized below. Keep in mind that these products were developed by 3rd parties and the Oasis Protocol Foundation cannot be held responsible for any security vulnerabilities or malicious activity.",
link: {
type: 'generated-index',
slug: 'general/manage-tokens/holding-rose-tokens',
},
items: [
'general/manage-tokens/holding-rose-tokens/custody-providers',
'general/manage-tokens/holding-rose-tokens/ledger-wallet',
]
},
'general/manage-tokens/how-to-bridge-assets',
'general/manage-tokens/faq',
],
},
],
};