forked from risc0/risc0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.js
100 lines (99 loc) · 2.38 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
93
94
95
96
97
98
99
100
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
export default {
education_hub: [
{
type: "link",
label: "Talks and Podcasts",
href: "https://www.youtube.com/playlist?list=PLcPzhUaCxlCgCvzkkaBWzVuHdBRsTNxj1",
},
{
type: "link",
label: "Articles",
href: "https://risczero.com/blog",
},
"studyclub",
{
type: "link",
label: "Education Database",
href: "https://risczero.notion.site/5a335a1d29b44cb48c44b36ae66f366f?v=95cda72e39d3403fbfb59884afb0045d&pvs=4",
},
{
type: "category",
label: "Proof System",
link: {
type: "doc",
id: "proof-system/proof-system",
},
collapsed: false,
items: [
{
type: "doc",
label: "Sequence Diagram",
id: "proof-system/proof-system-sequence-diagram",
},
{
type: "doc",
label: "Execution Traces",
id: "proof-system/what-is-a-trace",
},
{
type: "doc",
label: "STARK by Hand",
id: "proof-system/stark-by-hand",
},
{
type: "link",
label: "ZKP Whitepaper",
href: "https://www.risczero.com/proof-system-in-detail.pdf",
},
],
},
{
type: "category",
label: "Background Reading",
items: [
{
type: "doc",
label: "Arithmetic Circuits",
id: "reference-docs/about-arithmetic-circuits",
},
{
type: "doc",
label: "Finite Fields",
id: "reference-docs/about-finite-fields",
},
{
type: "doc",
label: "FRI Protocol",
id: "reference-docs/about-fri",
},
{
type: "doc",
label: "PLONK",
id: "reference-docs/about-plonk",
},
{
type: "doc",
label: "STARKs",
id: "reference-docs/about-starks",
},
{
type: "doc",
label: "Number Theoretic Transforms",
id: "reference-docs/about-ntts-and-fourier",
},
{
type: "doc",
label: "RISC-V",
id: "reference-docs/about-risc-v",
},
{
type: "doc",
label: "Reed Solomon Codes",
id: "reference-docs/about-rs-codes",
},
],
},
],
};