forked from Giveth/giveth-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebarsDapps.js
112 lines (110 loc) · 3.49 KB
/
sidebarsDapps.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
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
module.exports = {
dapps: [
{
type: 'category',
label: 'DApps Documentation',
link: {
type: 'generated-index',
title: 'Dapps Documentation',
description: 'Learn more about how the Giveth Dapp works. We have a variety of articles tailored for Users and Developers for Giveth.io, Giveth TRACE and the GIVeconomy.',
slug: 'dapps/'
},
items:[
{
type: 'category',
label: 'User Guides',
collapsed: true,
items: [{
type: 'category',
label: 'Giveth.io',
collapsed: true,
link: {type: 'doc', id: 'givethIO'},
items: ['gettingStarted','crypto','createproject','listedUnlisted','projectVerification','projectdonating' ,{
type: 'category',
label: 'Wallets',
items: ['torusUserGuide', 'torusonramp','importTorusMM', 'donatingmetamask'],
},
'troubleshooting','faq'],
},{
type: 'category',
label: 'Giveth TRACE (Deprecated)',
link: {type: 'doc', id:'introTrace'},
items: [ 'entitiesAndRoles','makeTraceableProject','leavingTraces', 'technicalWhitePaper', 'exchangeRates', 'traceContracts' ]
},
{ type: 'category',
label: 'GIVeconomy',
link: {type: 'doc', id: 'giveconomy'},
items: [ 'givdrop', 'givbacks', 'givethMatchingPool', 'givstream',
{
type: 'category',
label: 'GIVgarden',
link: {type: 'doc', id: 'givgarden'},
items:['termsForProposals']
},
{
type: 'category',
label: 'GIVfarm',
link: {type: 'doc', id: 'givfarm'},
items:['regenFarms', 'angelVault']
}
,'givpower', 'niceToken'
]
}
]
},
{
type: 'category',
label: "Developer Guides",
items: [ 'contributors', {
type: 'category',
label: 'Giveth.io',
items: ['givethioinstallation', 'testing-guidelines']
}, {
type: 'category',
label: "Giveth TRACE (Deprecated)",
items: ['TRACEinstallation','bridgeSecurity', 'developmentProcess']
},
{
type: 'category',
label: 'GIVeconomy',
items: ['installGIVeconomy', 'testingGIVeconomy', 'regenFarmContracts']
}
]
},
// {
// type : 'category',
// label : 'User Guides',
// items : ['gettingStarted', 'crypto', 'createproject','listedUnlisted' ,'makeTraceableProject','projectdonating',
// {
// type: 'category',
// label: 'Wallets',
// items: ['torusUserGuide', 'torusonramp', 'donatingmetamask'],
// },
// 'troubleshooting','faq'],
// },
// {
// type : 'category',
// label: 'Developer Documentation',
// items : ['givethioinstallation','contributors', 'testing-guidelines', 'dev-guidelines',
// ],
// },
// {
// type: 'category',
// label: 'Giveth TRACE',
// items: [ 'introTrace','TRACEinstallation', 'entitiesAndRoles',
// {
// type: 'category',
// label: 'DApp Documentation',
// items: ['bridgeSecurity', 'leavingTraces', 'developmentProcess'],
// },
// {
// type: 'category',
// label: 'Reference',
// items: ['technicalWhitePaper', 'exchangeRates', 'traceContracts']
// },
// ],
// },
],
},
]
}