-
Notifications
You must be signed in to change notification settings - Fork 93
/
docusaurus.config.js
447 lines (436 loc) · 14.1 KB
/
docusaurus.config.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
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
// @ts-nocheck
// Note: type annotations allow type checking and IDEs autocompletion
const { themes } = require("prism-react-renderer");
const lightCodeTheme = themes.github;
const darkCodeTheme = themes.dracula;
/** @type {import('@docusaurus/types').Config} */
const config = {
title: "Welcome to Astar",
tagline: "Here you will find documentation on how to develop dApps on Astar.",
url: "https://docs.astar.network",
baseUrl: "/",
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "throw",
favicon: "img/fav.png",
organizationName: "AstarNetwork", // Usually your GitHub org/user name.
projectName: "astar-docs", // Usually your repo name.
plugins: [],
markdown: {
mermaid: true,
},
themes: ["@docusaurus/theme-mermaid"],
stylesheets: [
{
href: "https://cdn.jsdelivr.net/npm/katex@0.13.24/dist/katex.min.css",
type: "text/css",
integrity: "sha384-odtC+0UGzzFL/6PNoE8rX/SPcQDXBJ+uRepguP4QkPCm2LBxH3FA3y+fKSiJ+AmM",
crossorigin: "anonymous",
},
{
href: "https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap",
type: "text/css",
},
],
clientModules: [require.resolve("./static/astarAi.js")],
presets: [
[
"@docusaurus/preset-classic",
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
path: "docs",
routeBasePath: "docs",
sidebarPath: require.resolve("./sidebars.js"),
// Please change this to your repo.
editUrl: "https://github.com/AstarNetwork/astar-docs/tree/main/",
remarkPlugins: [require("remark-math")],
rehypePlugins: [require("rehype-katex")],
},
blog: {
showReadingTime: true,
// Please change this to your repo.
editUrl: "https://github.com/AstarNetwork/astar-docs/tree/main/",
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
}),
],
],
//Enable multilanguage support. Portuguese added as first language
i18n: {
defaultLocale: "en",
locales: ["en", "ja", "es"],
localeConfigs: {
en: { htmlLang: "en-US" },
ja: {},
},
},
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
navbar: {
logo: {
alt: "Astar",
src: "img/astar-logo-text.svg",
srcDark: "img/astar-logo-text-dark.svg",
},
items: [
{
type: "doc",
docId: "getting-started",
position: "left",
label: "Docs",
},
{
position: "left",
label: "Website",
to: "https://astar.network",
},
{
position: "left",
label: "Portal",
to: "https://portal.astar.network/",
},
{
type: "localeDropdown",
position: "right",
},
],
},
footer: {
style: "light",
links: [
{
title: "Solutions",
items: [
{
label: "Solutions",
href: "https://astar.network",
},
{
label: "Startale Labs",
href: "https://astar.network",
},
{
label: "Astar Japan Lab",
href: "https://astar.network",
},
{
label: "Astar 2.0",
href: "https://astar.network",
},
],
},
{
title: "Use",
items: [
{
label: "Portal",
href: "https://astar.network",
},
{
label: "dApp Staking",
href: "https://astar.network",
},
{
label: "Ecosystem",
href: "https://astar.network",
},
],
},
{
title: "Developer",
items: [
{
label: "Start Building",
href: "https://astar.network",
},
{
label: "Docs",
to: "https://astar.network",
},
],
},
{
title: "Explore",
items: [
{
label: "Community",
href: "https://astar.network",
},
{
label: "Blog",
href: "https://astar.network",
},
{
label: "Become our Agent",
href: "https://astar.network",
},
{
label: "Discord Community",
href: "https://astar.network",
},
{
label: "Astar Forum",
href: "https://astar.network",
},
],
},
{
title: "About",
items: [
{
label: "Brand Asset Kit",
href: "https://astar.network",
},
{
label: "Careers",
href: "https://astar.network",
},
{
label: "Contact Us",
href: "https://astar.network",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "https://astar.network",
},
{
label: "Terms of Use",
href: "https://astar.network",
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Astar Developers Hub.`,
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
additionalLanguages: ["rust", "toml", "solidity"],
},
algolia: {
// The application ID provided by Algolia
appId: "S7S4T6Q4KC",
// Public API key: it is safe to commit it
apiKey: "daf10229cac599f39cd3de3e87f85e6d",
indexName: "astar",
// Optional: see doc section below
contextualSearch: true,
// Optional: Specify domains where the navigation should occur through window.location instead on history.push. Useful when our Algolia config crawls multiple documentation sites and we want to navigate with window.location.href to them.
externalUrlRegex: "astar\\.network",
// Optional: Algolia search parameters
searchParameters: {},
// Optional: path for search page that enabled by default (`false` to disable it)
searchPagePath: "search",
//... other Algolia params
},
}),
customFields: {
searchTags: ["dApp Staking", "smart contracts", "IDE", "zkEVM", "API", "Faucet", "Oracles"],
tabs: [
{
label: "About Astar",
id: "about",
iconCssVarName: "astar-icon",
content: [
{
title: "About Astar Network",
caption: "Japan's Scalable, Interoperable Smart Contract Platform",
url: "https://docs.astar.network/docs/learn/astar",
},
{
title: "Architecture",
caption: "Ecosystem Architecture: Ethereum zkEVM Layer 2 & Polkadot Parachain",
url: "https://docs.astar.network/docs/learn/architecture/",
},
{
title: "Networks",
caption: "Networks accessible within the Astar Ecosystem",
url: "https://docs.astar.network/docs/learn/networks",
},
{
title: "Astar Token",
caption: "ASTR token: utilities, allocation, and values",
url: "https://docs.astar.network/docs/learn/astar-tokens",
},
{
title: "Tokenomics 2.0",
caption: "Astar Tokenomics: Inflation and Fees Model",
url: "https://docs.astar.network/docs/learn/tokenomics2/",
},
{
title: "Astar zkEVM",
caption: "Layer 2 scaling solution connected to AggLayer",
url: "https://docs.astar.network/docs/learn/zkEVM/",
},
],
highlight: {
single: {
title: "Connecting you to web3",
caption: "Creating opportunities for individuals to use web3 technology",
buttonText: "Astar website",
buttonUrl: "https://astar.network",
},
},
},
{
label: "dApp Staking",
id: "staking",
iconCssVarName: "staking-icon",
content: [
{
title: "What is dApp Staking",
caption: "Unique stacking mechanism to provide financial incentives for developers",
url: "https://docs.astar.network/docs/learn/dapp-staking/",
},
{
title: "Technical Overview",
caption: "Technical and detailed presentation of dApp Staking",
url: "https://docs.astar.network/docs/learn/dapp-staking/dapp-staking-protocol",
},
{
title: "Parameters",
caption:
"Parameters such as time, rewards, slot allocations, tier assignments, and thresholds.",
url: "https://docs.astar.network/docs/learn/dapp-staking/protocol-parameters",
},
{
title: "For Users",
caption: "How ASTR holders can take part in dApp Staking",
url: "https://docs.astar.network/docs/use/dapp-staking/for-stakers/",
},
{
title: "For Developers",
caption: "How project owners can participate in dApp Staking",
url: "https://docs.astar.network/docs/use/dapp-staking/for-devs/",
},
{
title: "Building with dApp Staking",
caption: "Leveraging and building on top of dApp Staking",
url: "https://docs.astar.network/docs/build/dapp-staking/",
},
],
highlight: {
single: {
title: "dApp Staking",
caption: "Incentivized program connecting devs to Astar community",
buttonText: "Build & Earn",
buttonUrl: "https://docs.astar.network/docs/learn/dapp-staking/",
},
},
},
{
label: "Users Guides",
id: "guides",
iconCssVarName: "guide-icon",
content: [
{
title: "Astar Wallet",
caption: "Set up your Ethereum or Polkadot wallet for the Astar Ecosystem",
url: "https://docs.astar.network/docs/use/manage-wallets/create-wallet",
},
{
title: "Transfer assets",
caption: "Transfer assets within and outside the Astar Ecosystem",
url: "https://docs.astar.network/docs/use/manage-assets/transfer-tokens",
},
{
title: "Astar zkEVM",
caption: "Explore and utilize the Layer 2 Astar zkEVM",
url: "https://docs.astar.network/docs/use/zkevm-guides/",
},
{
title: "dApp Staking",
caption: "How ASTR holders or project owners can take part in dApp Staking",
url: "https://docs.astar.network/docs/use/dapp-staking/",
},
{
title: "Troubleshooting",
caption: "For users encountering issues on the Astar network",
url: "https://docs.astar.network/docs/use/troubleshooting",
},
],
highlight: {
single: {
title: "Astar Portal",
caption: "Multi-chain platform hub for asset management",
buttonText: "Try it out!",
buttonUrl: "https://portal.astar.network/",
},
},
},
{
label: "Builders",
id: "builders",
iconCssVarName: "builders-icon",
content: [
{
title: "Introduction",
caption: "A Developer's Overview of the Astar Ecosystem",
url: "https://docs.astar.network/docs/build/Introduction/",
},
{
title: "Nodes",
caption: "Set up a permissionless node and become a collator",
url: "https://docs.astar.network/docs/build/nodes/",
},
{
title: "Build Environment",
caption: "Set up a local environment tailored to your development requirements",
url: "https://docs.astar.network/docs/build/environment/",
},
{
title: "Astar zkEVM",
caption: "Everything you need to build on Astar zkEVM Layer 2",
url: "https://docs.astar.network/docs/build/zkEVM/",
},
{
title: "Integrations",
caption: "Common services and infrastructure tools integrated on Astar Network",
url: "https://docs.astar.network/docs/build/integrations/",
},
{
title: "WASM smart-contracts",
caption: "Build and deploy a smart contract using the WASM tech stack",
url: "https://docs.astar.network/docs/build/wasm/",
},
{
title: "EVM smart-contracts",
caption: "Build and deploy a smart contract using the EVM tech stack",
url: "https://docs.astar.network/docs/build/EVM/",
},
],
highlight: {
multi: [
{
title: "Faucet",
subtitle: "Need tokens for testing?",
icon: null,
url: "https://docs.astar.network/docs/build/environment/faucet",
},
{
title: "Support",
subtitle: "Encountering issues?",
icon: "/img/socials/discord-color.svg",
url: "https://discord.gg/astarnetwork",
},
{
title: "Check our Ecosystem",
subtitle: "Developer toolings",
icon: null,
url: "https://astar.network/ecosystem",
},
],
},
},
],
},
};
module.exports = config;