-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
88 lines (83 loc) · 2.35 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
module.exports = {
learn: [
{
type: 'category',
label: 'Workshops',
items: [
{
type: 'category',
label: 'Notarization',
items: [
{ 'Theory' : [
'learn/workshops/notarization/theory/overview',
'learn/workshops/notarization/theory/intro',
'learn/workshops/notarization/theory/need-to-notarize',
'learn/workshops/notarization/theory/renting-an-old-factory',
'learn/workshops/notarization/theory/opportunities-in-a-digital-age',
'learn/workshops/notarization/theory/notarization-powered-by-blockchain',
'learn/workshops/notarization/theory/comparing-old-new',
]},
{ 'Practice': [
'learn/workshops/notarization/practice/overview',
]}
]
}
]
}
],
wiki: [
{
type: 'category',
label: 'Workstation setup',
items: [
'wiki/workstation-setup/starter-kit'
]
},
{ type: 'category',
label: 'Smart Contract',
items: [
'knowledge/smart_contract/smart-contract',
'knowledge/smart_contract/entrypoints',
'knowledge/smart_contract/michelson',
]
},
{
type: 'category',
label: 'Tezos Protocol',
items: [
'knowledge/tezos_protocol/account',
//'knowledge/tezos_protocol/block',
'knowledge/tezos_protocol/context',
{
type: 'category',
label: 'Cryptography',
items: [
'knowledge/tezos_protocol/cryptography/hash',
'knowledge/tezos_protocol/cryptography/key-pair',
'knowledge/tezos_protocol/cryptography/signature'
]
},
'knowledge/tezos_protocol/protocol',
'knowledge/tezos_protocol/node',
{
type: 'category',
label: 'Operations',
items: [
'knowledge/tezos_protocol/operations/operations',
'knowledge/tezos_protocol/operations/gas-fees',
'knowledge/tezos_protocol/operations/reveal-operation',
// 'knowledge/tezos_protocol/operations/transaction'
]
}
]
},
{
type: 'category',
label: 'References',
items: [
'knowledge/references/taquito',
'knowledge/references/tezbridge',
]
}
],
};