-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathnav.js
More file actions
219 lines (215 loc) · 5.21 KB
/
Copy pathnav.js
File metadata and controls
219 lines (215 loc) · 5.21 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/* --- NAVBAR (top) --- */
// NOTES:
// Internal links: Must have a corresponding folder with a README.md file
// Links must be absolute with trailing slash '/guide/'
// Trailing slash implies it is looking for a .md file
export const nav = [
{
text: 'Orchestrate',
collapsed: true,
items: [
{
text: 'What is Agoric Orchestration?',
link: '/guides/orchestration/',
},
{
text: 'Transactional vs Portfolio',
link: '/guides/orchestration/txvsportfolio',
},
{
text: 'Key Concepts and APIs',
link: '/guides/orchestration/key-concepts',
},
{
text: 'Contract Walkthroughs',
items: [
{
text: 'Send Anywhere Example',
link: '/guides/orchestration/contract-walkthroughs/send-anywhere',
},
{
text: 'Cross-Chain Unbond Example',
link: '/guides/orchestration/contract-walkthroughs/cross-chain-unbond',
}
]
},
{
text: 'Example Orchestration DApp',
items: [
{
text: 'Installation and Deployment',
link: '/guides/orchestration/orchestration-basics/installation',
},
{
text: 'Orca Contract walkthrough',
link: '/guides/orchestration/orchestration-basics/contract',
},
{
text: 'UI Walkthrough',
link: '/guides/orchestration/orchestration-basics/ui',
}
]
},
{
text: 'How Orchestration Works',
link: "/guides/orchestration/how-orch-works",
}
]
},
{
text: 'Build',
items: [
{
text: 'Getting Started',
link: '/guides/getting-started/',
},
{
text: 'Smart Contract Basics',
link: '/guides/zoe/contract-basics',
},
{
text: 'UI Component Library',
link: '/guides/UIComponentLibrary/',
},
{
text: 'Building Client Dapps',
link: '/guides/getting-started/contract-rpc',
},
{
text: 'Permissioned Contract Deployment',
ariaLabel: 'Permissioned Contract Deployment',
link: '/guides/coreeval/',
},
{
text: 'Integrating with Agoric Network',
link: '/guides/integration/chain-integration',
},
{
text: 'Agoric CLI',
ariaLabel: 'Agoric CLI',
link: '/guides/agoric-cli/',
},
{
text: 'Endo API Reference',
link: 'https://endojs.github.io/endo/'
},
{
text: 'ERTP API',
ariaLabel: 'ERTP API Menu',
link: '/reference/ertp-api/',
},
{
text: 'Zoe API',
ariaLabel: 'ZOE API Menu',
link: '/reference/zoe-api/',
},
{
text: 'Example Zoe Contracts',
ariaLabel: 'Example Zoe Contracts',
link: '/guides/zoe/contracts/',
},
{
text: 'End-to-End Testing',
ariaLabel: 'End-to-End Testing',
link: '/e2e-testing',
},
],
},
{
text: 'Learn',
items: [
{
text: 'What is Agoric?',
link: '/what-is-agoric',
},
{
text: 'Agoric Platform',
link: '/guides/platform/',
collapsed: true,
items: [],
},
{
text: 'Zoe Smart Contract Framework',
link: '/guides/zoe/',
},
{
text: 'ERTP',
ariaLabel: 'ERTP',
link: '/guides/ertp/',
},
{
text: 'JavaScript Framework',
ariaLabel: 'JavaScript Framework',
link: '/guides/js-programming/',
},
{
text: 'Deployed Zoe Contracts',
ariaLabel: 'Deployed Zoe Contracts',
link: '/guides/zoe/actual-contracts/',
},
{
text: 'Glossary',
ariaLabel: 'Glossary Menu',
link: '/glossary/',
},
{
text: 'Papers',
ariaLabel: 'Papers Page Link',
link: 'https://agoric.com/papers/',
},
],
},
{
text: 'Tutorials',
items: [
{
text: 'Tutorial: Dapp with Agoric',
link: '/guides/getting-started/tutorial/',
},
{
text: 'dapp-agoric-basics',
link: '/guides/getting-started/tutorial-dapp-agoric-basics',
},
{
text: 'UI Tutorial',
link: '/guides/getting-started/ui-tutorial/',
},
],
},
{
text: 'Support',
items: [
{
text: 'Agoric',
ariaLabel: 'Agoric Homepage Link',
link: 'https://agoric.com/',
},
{
text: 'Discord',
link: 'https://agoric.com/discord',
},
{
text: 'Github Discussions (Q&A)',
link: 'https://github.com/Agoric/agoric-sdk/discussions',
},
{
text: 'Office Hours',
link: 'https://github.com/Agoric/agoric-sdk/wiki/Office-Hours',
},
{
text: 'Twitter',
link: 'https://twitter.com/agoric',
},
{
text: 'YouTube',
ariaLabel: 'Agoric YouTube Channel Page Link',
link: 'https://www.youtube.com/channel/UCpY91oQLh_Lp0mitdZ5bYWg/',
},
{
text: 'Github',
ariaLabel: 'Agoric Github Link',
link: 'https://github.com/Agoric/',
},
],
},
];