-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsidebars.js
97 lines (97 loc) · 2.4 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
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
module.exports = {
users: [
'users/foreword',
'users/what-is-ubi',
'users/what-is-circles',
'users/how-does-it-work',
],
communities: [
'communities/social-economic-organization',
'communities/principles',
'communities/democratic-assemblies',
'communities/self-sustainability',
'communities/decentralization',
'communities/local-solutions',
'communities/democratic-confederalism',
'communities/credit',
'communities/pricing-guidelines',
],
developers: [
'developers/getting-started',
'developers/whitepaper',
{
type: 'category',
label: 'System Architecture',
items: [
// @TODO
// 'developers/wallets',
// 'developers/trust-network',
// 'developers/transitive-transfers',
// 'developers/ubi-inflation',
// 'developers/dead-man-switch',
'developers/architecture/tech-overview',
],
},
{
type: 'category',
label: 'API Reference',
items: [
// @TODO
// {
// type: 'link',
// label: 'circles-contracts',
// href: '',
// },
{
type: 'link',
label: 'circles-core',
href: 'https://circlesubi.github.io/circles-core',
},
// @TODO
// {
// type: 'link',
// label: 'circles-transfer',
// href: '',
// },
{
type: 'link',
label: 'circles-api',
href: 'https://github.com/CirclesUBI/circles-api/blob/main/API.md',
},
// @TODO
// {
// type: 'link',
// label: 'safe-relay-service',
// href: '',
// },
],
},
{
type: 'category',
label: 'Transitive transactions',
items: [
'developers/transitive-transactions/transfer-limitations-in-practice',
],
},
{
type: 'category',
label: 'Tutorials',
items: [
'developers/tutorials/circles-by-sbt-ethereum',
'developers/tutorials/estimate-gas-cost',
'developers/tutorials/gnosis-safe-tutorial',
'developers/tutorials/mint-crc-no-relay-service',
],
},
{
type: 'link',
label: 'FAQ',
href: 'https://joincircles.net/faq',
},
{
type: 'link',
label: 'Contributing',
href: 'https://github.com/CirclesUBI/.github/blob/main/CONTRIBUTING.md',
},
],
};