-
Notifications
You must be signed in to change notification settings - Fork 56
/
sidebars.js
68 lines (67 loc) · 1.8 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
module.exports = {
someSidebar: [
'intro',
{
type: 'category',
label: 'Chialisp Primer',
collapsible: true,
collapsed: true,
link: {
type: 'generated-index',
slug: '/chialisp-primer',
title: 'Chialisp Primer',
description:
'This guide will teach you the basics of Chialisp, a smart coin language used on the Chia blockchain. You will learn the skills required to write basic programs that can dictate how and when coins (including XCH) can be spent.',
},
items: [
'chialisp-primer/intro',
'chialisp-primer/using-modules',
'chialisp-primer/testnet-setup',
'chialisp-primer/first-smart-coin',
'chialisp-primer/bls-signatures',
],
},
{
type: 'category',
label: 'Chialisp Concepts',
collapsible: true,
collapsed: true,
link: {
type: 'generated-index',
slug: '/chialisp-concepts',
title: 'Chialisp Concepts',
description:
'This guide introduces some key Chialisp concepts. Understanding these concepts will enable you to write Chialisp programs more easily.',
},
items: [
'chialisp-concepts/currying',
'chialisp-concepts/inner-puzzles',
'chialisp-concepts/condition-morphing',
],
},
'commands',
'syntax',
'modern-chialisp',
'operators',
'examples',
'costs',
'conditions',
'optimization',
'common_issues',
'debugging',
{
type: 'category',
label: 'Primitives',
items: [
'primitives/standard-transactions',
'primitives/singletons',
'primitives/cats',
'primitives/nfts',
'primitives/dids',
'primitives/offers',
'primitives/pooling',
],
},
'clvm',
],
};