-
Notifications
You must be signed in to change notification settings - Fork 1
/
sidebars.js
92 lines (88 loc) · 3.07 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
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
tutorialSidebar: [
// Section title
{
type: 'html',
className: 'sidebar-title',
value: 'Overview',
defaultStyle: true,
},
'overview/intro',
'overview/demoGameOverview',
{
type: 'html',
value: '<span class="sidebar-divider" />',
},
// Section title
{
type: 'html',
className: 'sidebar-title',
value: 'Settings',
defaultStyle: true,
},
{
type: 'category',
label: `Let's get your Wallet ready!`,
link: {
type: 'generated-index',
title: `Let's get your Wallet ready!`,
description: `Just as we carry wallets to keep our cash safe in our everyday routines, in the blockchain world, we need Wallets to hold onto tokens (or any other digital assets). Let's take a closer look by creating a Wallet ourselves.`
},
items: ['settings/create-wallet/create-wallet-with-vault', 'settings/create-wallet/create-wallet-with-js', 'settings/create-wallet/create-wallet-with-xplad', 'settings/create-wallet/get-testnet-xpla'],
},
{
type: 'category',
label: 'Time to Make Transactions!',
link: {
type: 'generated-index',
title: 'Time to Make Transactions!',
description: `Let's use the $XPLA testnet coins to leave a mark in the blockchain!`
},
items: ['settings/create-testnet-transaction/send-tx', 'settings/create-testnet-transaction/check-tx-in-explorer', 'settings/create-testnet-transaction/send-query', 'settings/create-testnet-transaction/use-xplad'],
},
{
type: 'html',
value: '<span class="sidebar-divider" />',
},
// Section title
{
type: 'html',
className: 'sidebar-title',
value: 'Code Along Tutorial',
defaultStyle: true,
},
{
type: 'category',
label: 'Utilize Tokens (CW20)',
link: {
type: 'generated-index',
title: 'Utilize Tokens (CW20)',
// description: ''
},
items: ['tutorial/make-cw20/make-cw20-with-vault', 'tutorial/make-cw20/make-cw20-with-js', 'tutorial/make-cw20/query-cw20'],
},
{
type: 'category',
label: 'Utilize NFT(CW721)',
link: {
type: 'generated-index',
title: 'Utilize NFT(CW721)',
// description: ''
},
items: ['tutorial/make-cw721/make-nft-vault', 'tutorial/make-cw721/make-nft-js', 'tutorial/make-cw721/query-cw721', 'tutorial/make-cw721/send-cw721'],
},
{
type: 'category',
label: 'Advanced - Dive deep into XPLA blockchain',
link: {
type: 'generated-index',
title: 'Advanced - Dive deep into XPLA blockchain',
// description: ''
},
items: ['tutorial/deep-understand-xpla/local-network', 'tutorial/deep-understand-xpla/account-sequence', 'tutorial/deep-understand-xpla/walletprovider', 'tutorial/deep-understand-xpla/write-contract', 'tutorial/deep-understand-xpla/convert', 'tutorial/deep-understand-xpla/swap'],
},
],
};
module.exports = sidebars;