forked from Unboxed-Software/solana-course
-
Notifications
You must be signed in to change notification settings - Fork 1
/
course-structure.json
295 lines (295 loc) · 8.84 KB
/
course-structure.json
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
[
{
"title": "Introduction",
"number": 0,
"lessons": [
{
"title": "Getting started",
"slug": "getting-started",
"objectives": [
"understand what web3 is",
"understand what Solana is",
"learn how this course is structured",
"know how to get the most from this course"
],
"number": 1
}
]
},
{
"title": "Introduction to cryptography and Solana clients",
"number": 1,
"lessons": [
{
"title": "Cryptography fundamentals",
"slug": "intro-to-cryptography",
"objectives": [
"Understand symmetric and asymmetric cryptography",
"Explain keypairs",
"Use `@solana/web3.js` to generate a new keypair",
"Use `@solana-developers/node-helpers` to load a keypair from an env file"
],
"number": 1
},
{
"title": "Read data from the network",
"slug": "intro-to-reading-data",
"objectives": [
"Understand accounts",
"Understand SOL and lamports",
"Understand the JSON RPC API",
"Understand web3.js",
"Install web3.js",
"Use web3.js to create a connection to a Solana node",
"Use web3.js to read data from the blockchain (balance, account info, etc.)"
],
"number": 2
},
{
"title": "Write data to the network",
"slug": "intro-to-writing-data",
"objectives": [
"Explain transactions",
"Explain transaction fees",
"Use `@solana/web3.js` to send SOL",
"Use `@solana/web3.js` to sign transactions",
"Use Solana explorer to view transactions"
],
"number": 3
},
{
"title": "Interact with wallets",
"slug": "interact-with-wallets",
"number": 4
},
{
"title": "Serialize program data",
"slug": "serialize-instruction-data",
"number": 5
},
{
"title": "Deserialize program data",
"slug": "deserialize-custom-data",
"number": 6
},
{
"title": "Page, Order, and Filter program data",
"slug": "paging-ordering-filtering-data",
"number": 7
}
]
},
{
"title": "Client Interaction with Common Solana Programs",
"number": 2,
"lessons": [
{
"title": "Create tokens with the Token Program",
"slug": "token-program",
"number": 1
},
{
"title": "Swap tokens with the Token Swap Program",
"slug": "token-swap",
"number": 2
},
{
"title": "Create Solana NFTs With Metaplex",
"slug": "nfts-with-metaplex",
"number": 3
}
]
},
{
"title": "Basic Solana Program Development",
"number": 3,
"lessons": [
{
"title": "Hello World",
"slug": "hello-world-program",
"number": 1
},
{
"title": "Create a Basic Program, Part 1 - Handle Instruction Data",
"slug": "deserialize-instruction-data",
"number": 2
},
{
"title": "Create a Basic Program, Part 2 - State Management",
"slug": "program-state-management",
"number": 3
},
{
"title": "Create a Basic Program, Part 3 - Basic Security and Validation",
"slug": "program-security",
"number": 4
}
]
},
{
"title": "Intermediate Solana Program Development",
"number": 4,
"lessons": [
{
"title": "Local Program Development",
"slug": "local-setup",
"number": 1
},
{
"title": "Program Derived Addresses",
"slug": "pda",
"number": 2
},
{
"title": "Cross Program Invocations",
"slug": "cpi",
"number": 3
},
{
"title": "Program Testing - COMING SOON",
"slug": "",
"hidden": true,
"number": 4
}
]
},
{
"title": "Anchor Program Development",
"number": 5,
"lessons": [
{
"title": "Intro to Anchor development",
"slug": "intro-to-anchor",
"number": 1
},
{
"title": "Intro to client-side Anchor development",
"slug": "intro-to-anchor-frontend",
"number": 2
},
{
"title": "Anchor PDAs and accounts",
"slug": "anchor-pdas",
"number": 3
},
{
"title": "Anchor CPIs and errors",
"slug": "anchor-cpi",
"number": 4
}
]
},
{
"title": "Beyond the Basics",
"number": 6,
"lessons": [
{
"title": "Environment variables in Solana programs",
"slug": "env-variables",
"number": 1
},
{
"title": "Solana Pay",
"slug": "solana-pay",
"number": 2
},
{
"title": "Versioned transactions and lookup tables",
"slug": "versioned-transaction",
"number": 3
},
{
"title": "Rust procedural macros",
"slug": "rust-macros",
"number": 4
}
]
},
{
"title": "Solana Program Security",
"number": 7,
"lessons": [
{
"title": "How to approach the Program Security module",
"slug": "security-intro",
"number": 1
},
{
"title": "Signer authorization",
"slug": "signer-auth",
"number": 2
},
{
"title": "Owner checks",
"slug": "owner-checks",
"number": 3
},
{
"title": "Account data matching",
"slug": "account-data-matching",
"number": 4
},
{
"title": "Reinitialization attacks",
"slug": "reinitialization-attacks",
"number": 5
},
{
"title": "Duplicate mutable accounts",
"slug": "duplicate-mutable-accounts",
"number": 6
},
{
"title": "Type cosplay",
"slug": "type-cosplay",
"number": 7
},
{
"title": "Arbitrary CPIs",
"slug": "arbitrary-cpi",
"number": 8
},
{
"title": "Bump seed canonicalization",
"slug": "bump-seed-canonicalization",
"number": 9
},
{
"title": "Closing accounts and revival attacks",
"slug": "closing-accounts",
"number": 10
},
{
"title": "PDA sharing",
"slug": "pda-sharing",
"number": 11
}
]
},
{
"title": "Advanced Solana Programming",
"number": 8,
"lessons": [
{
"title": "Program architecture",
"slug": "program-architecture",
"number": 1
},
{
"title": "Oracles and oracle networks",
"slug": "oracles",
"number": 2
},
{
"title": "Verifiable randomness functions",
"slug": "vrf",
"number": 3
},
{
"title": "Compressed NFTs",
"slug": "compressed-nfts",
"number": 4
}
]
}
]