-
Notifications
You must be signed in to change notification settings - Fork 24
/
seed-data.json
5163 lines (5163 loc) · 324 KB
/
seed-data.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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"cohorts": {
"gN8lNI52TPpLNUuy4oSM": {
"discord_channel": "builds",
"endDate": {
"_seconds": 1724104800,
"_nanoseconds": 0
},
"kickoffEndTime": {
"_seconds": 1722898800,
"_nanoseconds": 0
},
"nft_title": "Rust State Machine NFT Cohorts",
"name": "PIONEERS",
"kickoffStartTime": {
"_seconds": 1622895200,
"_nanoseconds": 0
},
"startDate": {
"_seconds": 1622895200,
"_nanoseconds": 0
},
"course_id": "Rust_State_Machine",
"email_content": {
"subject": "Your journey to learn Rust and Build your First Blockchain"
},
"discord_role": "1264936029769564211"
},
"RU5mLpQrZZWlmftNSB2w": {
"discord_channel": "rust-state-machine-explorers",
"course_id": "Rust_State_Machine",
"endDate": {
"_seconds": 1732743757,
"_nanoseconds": 0
},
"nft_title": "Rust State Machine",
"email_content": {
"subject": "Your journey to learn Rust and Build your First Blockchain"
},
"name": "EXPLORERS",
"discord_role": "1278014669625495562",
"startDate": {
"_seconds": 1729080000,
"_nanoseconds": 569000000
},
"kickoffStartTime": {
"_seconds": 1729080000,
"_nanoseconds": 46000000
},
"kickoffEndTime": {
"_seconds": 1729083600,
"_nanoseconds": 483000000
}
}
},
"courses": {
"Rust_State_Machine": {
"image_url": "https://firebasestorage.googleapis.com/v0/b/web3dev-bootcamp.appspot.com/o/courses_cover%2FRust_State_Machine.png?alt=media&token=502f8693-237b-47fd-a8e1-73d3375b0f3f",
"active": true,
"index": 1,
"home": true,
"tags": ["rust", "blockchain", "polkadot", "substrate"],
"resized_img_url": "https://firebasestorage.googleapis.com/v0/b/web3dev-development.appspot.com/o/courses_cover%2FRust_State_Machine_Resized.png?alt=media&token=73d4418c-8a0a-4115-9997-512341a0ed82",
"nft_title": "Rust State Machine NFT",
"lastLesson": "Lesson_4_Use_the_Runtime_Macro.md",
"metadata": {
"pt-BR": {
"difficulty": "Intermediário",
"duration": "2 semanas",
"description": "<p>Olá, futuro mago do blockchain! 🌟</p> <p>Pronto para mergulhar no mundo do Rust e blockchain, e dominar o SDK do Polkadot como um profissional? Este tutorial guiado é o seu ingresso de ouro. Sabemos que o maior obstáculo para construir seu primeiro blockchain com o SDK do Polkadot é lidar com os recursos avançados do Rust e decifrar a mágica por trás daqueles macros bacanas do Substrate. Mas não se preocupe, estamos aqui para ajudar!</p> <p>Neste tutorial, você vai arregaçar as mangas e construir um projeto puro em Rust do zero. Você vai replicar todos os truques legais que o SDK do Polkadot usa, dando a você uma visão clara do mago por trás da cortina. Ao final, você terá uma compreensão sólida do que está acontecendo nos bastidores.</p> <p><strong>Para quem é isso?</strong></p> <ul> <li>Novatos totais em Rust 🌱</li> <li>Iniciantes em blockchain 💡</li> <li>Mentes curiosas querendo desmistificar o SDK do Polkadot 🔍</li> </ul> <p>Não se preocupe se você ainda não é um guru de Rust ou blockchain. No entanto, um pouco de preparação ajuda bastante. Recomendamos fortemente que você dê uma olhada nos primeiros 11 capítulos do Livro do Rust (<a href='https://doc.rust-lang.org/book/' target='_blank'>https://doc.rust-lang.org/book/</a>). Não se preocupe em dominar todos os detalhes; apenas familiarize-se com conceitos como propriedade, tipos de dados básicos, structs, enums, crates, tratamento de erros, traits, genéricos e testes.</p> <p>E então, você está dentro? Vamos embarcar juntos nesta aventura de codificação e desvendar os segredos da mágica do Rust e do SDK do Polkadot. Inscreva-se agora e comece sua jornada!</p>",
"title": "Rust State Machine titulo",
"sections": {
"Section_6": [
{
"file": "Lesson_1_Rust_Macros.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a implementação de macros Rust e faça o upload abaixo.",
"title": "Lição 1: Rust Macros",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_2_Adding_Call_Macro_to_Balances.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a adição de macros de chamada aos balances e faça o upload abaixo.",
"title": "Lição 2: Adicionando Macro de Chamada aos Balances",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_3_Adding_Call_Macro_to_PoE.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a adição de macros de chamada ao PoE e faça o upload abaixo.",
"title": "Lição 3: Adicionando Macro de Chamada ao PoE",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_4_Use_the_Runtime_Macro.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando o uso do macro runtime e faça o upload abaixo.",
"title": "Lição 4: Usando a Macro Runtime",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"twitter": "Acabei de concluir o curso completo sobre a construção de uma blockchain do zero com Rust, guiado por @web3dev_! 🚀 Agora domino macros Rust, adicionei macros de chamada aos balances e PoE, e utilizei o macro runtime. Junte-se a mim em https://build.w3d.community/ e vamos construir o futuro juntos! #RustLang #Polkadot #Blockchain #Web3",
"file": "Lesson_5_Course_Completed.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando seu projeto final e faça o upload abaixo.",
"title": "Lição 5: Curso completo",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
}
],
"Section_3": [
{
"file": "Lesson_1_Generic_Types.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a implementação de tipos Genéricos e faça o upload abaixo.",
"title": "Lição 1: Tipos Genéricos",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_2_Num_Crate.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a implementação do Num Crate e faça o upload abaixo.",
"title": "Lição 2: Num Crate",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_3_Make_Balances_Pallet_Generic.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando como você tornou o Balances Pallet genérico e faça o upload abaixo.",
"title": "Lição 3: Tornar o Balances Pallet Genérico",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_4_Make_System_Pallet_Generic.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando como você tornou o System Pallet genérico e faça o upload abaixo.",
"title": "Lição 4: Tornar o System Pallet Genérico",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_5_Make_System_Configurable.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando como você tornou o System configurável e faça o upload abaixo.",
"title": "Lição 5: Tornar o System Configurável",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_6_Make_Balances_Configurable.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando como você tornou o Balances configurável e faça o upload abaixo.",
"title": "Lição 6: Tornar o Balances Configurável",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"twitter": "Acabei de concluir a terceira seção do aprendizado de como construir uma blockchain do zero com Rust, guiado por @web3dev_! 🚀 Agora sei como implementar Generic Types, usar o Num Crate, tornar os pallets Balances e System genéricos e configuráveis, e entender o Tight Coupling. Junte-se a mim em https://build.w3d.community/ e vamos construir o futuro juntos! #RustLang #Polkadot #Blockchain #Web3",
"file": "Lesson_7_Tight_Coupling.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando seu entendimento sobre Tight Coupling e faça o upload abaixo.",
"title": "Lição 7: Tight Coupling",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
}
],
"Section_2": [
{
"file": "Lesson_1_System_Pallet.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a implementação do System Pallet e faça o upload abaixo.",
"title": "Lição 1: System Pallet",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_2_Block_Number_and_Nonce.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a implementação de Block Number e Nonce e faça o upload abaixo.",
"title": "Lição 2: Block Number e Nonce",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_3_Runtime.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a implementação do Runtime e faça o upload abaixo.",
"title": "Lição 3: Runtime",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_4_Executing_Runtime.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a execução do Runtime e faça o upload abaixo.",
"title": "Lição 4: Executing Runtime",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"twitter": "Acabei de concluir a segunda seção do aprendizado de como construir uma blockchain do zero com Rust, guiado por @web3dev_! 🚀 Agora sei como implementar o System Pallet, lidar com Block Number e Nonce, criar e gerenciar Runtime, executar o Runtime e depurar o Runtime. Junte-se a mim em https://build.w3d.community/ e vamos construir o futuro juntos! #RustLang #Polkadot #Blockchain #Web3",
"file": "Lesson_5_Runtime_Debug.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando o processo de depuração do Runtime e faça o upload abaixo.",
"title": "Lição 5: Runtime Debug",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
}
],
"Section_5": [
{
"file": "Lesson_1_The_Proof_of_Existence_Pallet.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a implementação do Proof of Existence Pallet e faça o upload abaixo.",
"title": "Lição 1: O Pallet de Prova de Existência",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_2_Proof_Of_Existence_Functions.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a implementação das funções Proof of Existence e faça o upload abaixo.",
"title": "Lição 2: Funções de Prova de Existência",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_3_Proof_of_Existence_Dispatch.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a implementação do despacho Proof of Existence e faça o upload abaixo.",
"title": "Lição 3: Despacho de Prova de Existência",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_4_Integrate_Into_Runtime.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a integração no runtime e faça o upload abaixo.",
"title": "Lição 4: Integrando ao Runtime",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_5_Add_Extrinsic_To_Block.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando como você adicionou um extrínseco ao bloco e faça o upload abaixo.",
"title": "Lição 5: Adicionando Extrínseco ao Bloco",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
}
],
"Section_4": [
{
"file": "Lesson_1_Executing_Blocks_and_Dispatching_Calls.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a execução de blocos e o despacho de chamadas e faça o upload abaixo.",
"title": "Lição 1: Executando Blocos e Despachando Chamadas",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_2_Block_Type.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a implementação de tipos de bloco e faça o upload abaixo.",
"title": "Lição 2: Block Type",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_3_Executing_Blocks.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a execução de blocos e faça o upload abaixo.",
"title": "Lição 3: Executando Blocos",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_4_Dispatching_Calls.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando o despacho de chamadas e faça o upload abaixo.",
"title": "Lição 4: Despachando Chamadas",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_5_Execute_Block_With_Extrinsics.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a execução de um bloco com extrínsecos e faça o upload abaixo.",
"title": "Lição 5: Executando Bloco com Extrínsecos",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_6_Pallet_Level_Dispatch.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando o despacho no nível de pallet e faça o upload abaixo.",
"title": "Lição 6: Despacho no Nível de Pallet",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"twitter": "Acabei de concluir a quarta seção do aprendizado de como construir uma blockchain do zero com Rust, guiado por @web3dev_! 🚀 Agora sei como executar blocos, despachar chamadas, trabalhar com tipos de blocos, executar blocos com extrínsecos, e lidar com despacho no nível de pallet e despacho aninhado. Junte-se a mim em https://build.w3d.community/ e vamos construir o futuro juntos! #RustLang #Polkadot #Blockchain #Web3",
"file": "Lesson_7_Nested_Dispatch.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando o despacho aninhado e faça o upload abaixo.",
"title": "Lição 7: Nested Dispatch",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
}
],
"Section_1": [
{
"file": "Lesson_1_Balances_Pallet.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a execução bem-sucedida do Balances Pallet e faça o upload abaixo.",
"title": "Lição 1: Balances Pallet",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_2_Add_State.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a adição de estado e faça o upload abaixo.",
"title": "Lição 2: Adicionar Estado",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_3_Store_And_Read.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando o armazenamento e leitura de estado e faça o upload abaixo.",
"title": "Lição 3: Armazenar e Ler",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_4_Basic_Tests.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a execução bem-sucedida de testes básicos e faça o upload abaixo.",
"title": "Lição 4: Testes Básicos",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"twitter": "Acabei de concluir a primeira seção do aprendizado de como construir uma blockchain do zero com Rust, guiado por @web3dev_! 🚀 Agora sei como criar e gerenciar um pallet de saldos, adicionar e gerenciar estado, armazenar e ler dados, escrever testes básicos e implementar transferências de saldo. Junte-se a mim em https://build.w3d.community/ e vamos construir o futuro juntos! #RustLang #Polkadot #Blockchain #Web3",
"file": "Lesson_5_Transfer_Balance.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a transferência bem-sucedida de saldo e faça o upload abaixo.",
"title": "Lição 5: Transferência de Saldo",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
}
],
"Section_0": [
{
"file": "Lesson_1_What_Are_We_Building.md",
"submission_type": "text",
"submission_text": "Você está pronto para começar? Por favor, digite como você está se sentindo antes de iniciar o curso.",
"title": "Lição 1: O que estamos construindo",
"submission_title": "Comece Agora!"
},
{
"twitter": "Acabei de começar a aprender Rust com @web3dev_ - junte-se a mim em https://build.w3d.community/",
"file": "Lesson_2_Requirements.md",
"submission_type": "text",
"submission_text": "Você instalou o software necessário?",
"title": "Lição 2: Requisitos",
"submission_title": "Requisitos Instalados!"
}
]
}
},
"en": {
"description": "<p>Hey there, future blockchain wizard! 🌟</p> <p>Ready to dive into the world of Rust and blockchain, and tackle the Polkadot SDK like a pro? This guided tutorial is your golden ticket. We know the biggest hurdle in building your first blockchain with the Polkadot SDK is wrestling with advanced Rust features and deciphering the magic behind those nifty Substrate macros. But don’t worry, we’ve got your back!</p> <p>In this tutorial, you’ll roll up your sleeves and build a pure Rust project from scratch. You'll replicate all the cool tricks the Polkadot SDK uses, giving you a clear view of the wizard behind the curtain. By the end of it, you'll have a solid grasp of what's happening under the hood.</p> <p><strong>Who’s this for?</strong></p> <ul> <li>Total Rust rookies 🌱</li> <li>Blockchain beginners 💡</li> <li>Curious minds wanting to demystify the Polkadot SDK 🔍</li> </ul> <p>No worries if you're not a Rust or blockchain guru yet. However, a little prep work goes a long way. We highly recommend skimming through the first 11 chapters of the Rust Book (<a href=\"https://doc.rust-lang.org/book/\" target=\"_blank\">https://doc.rust-lang.org/book/</a>). Don't stress about mastering every detail; just get a feel for concepts like ownership, basic data types, structs, enums, crates, error handling, traits, generics, and tests.</p> <p>So, are you in? Let's embark on this coding adventure together and unlock the secrets of Rust and Polkadot SDK magic. Subscribe now and start your journey!</p>",
"difficulty": "Intermediate",
"duration": "2 weeks",
"title": "1 Rust State Machine",
"sections": {
"Section_6": [
{
"file": "Lesson_1_Rust_Macros.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the implementation of Rust macros and upload it below.",
"title": "Lesson 1: Rust Macros",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_2_Adding_Call_Macro_to_Balances.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the addition of call macros to balances and upload it below.",
"title": "Lesson 2: Adding Call Macro to Balances",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_3_Adding_Call_Macro_to_PoE.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the addition of call macros to PoE and upload it below.",
"title": "Lesson 3: Adding Call Macro to PoE",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_4_Use_the_Runtime_Macro.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the use of the runtime macro and upload it below.",
"title": "Lesson 4: Use the Runtime Macro",
"submission_title": "Upload a screenshot of your terminal"
},
{
"twitter": "I just completed the entire course on building a blockchain from scratch with Rust, guided by @web3dev_! 🚀 Now I have mastered Rust macros, added call macros to balances and PoE, and used the runtime macro. Join me at https://build.w3d.community/ and let's build the future together! #RustLang #Polkadot #Blockchain #Web3",
"file": "Lesson_5_Course_Completed.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing your final project and upload it below.",
"title": "Lesson 5: Course Completed",
"submission_title": "Upload a screenshot of your terminal"
}
],
"Section_3": [
{
"file": "Lesson_1_Generic_Types.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the implementation of generic types and upload it below.",
"title": "Lesson 1: Generic Types",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_2_Num_Crate.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the implementation of the Num crate and upload it below.",
"title": "Lesson 2: Num Crate",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_3_Make_Balances_Pallet_Generic.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing how you made the balances pallet generic and upload it below.",
"title": "Lesson 3: Make Balances Pallet Generic",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_4_Make_System_Pallet_Generic.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing how you made the system pallet generic and upload it below.",
"title": "Lesson 4: Make System Pallet Generic",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_5_Make_System_Configurable.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing how you made the system configurable and upload it below.",
"title": "Lesson 5: Make System Configurable",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_6_Make_Balances_Configurable.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing how you made the balances configurable and upload it below.",
"title": "Lesson 6: Make Balances Configurable",
"submission_title": "Upload a screenshot of your terminal"
},
{
"twitter": "I just finished the third section of learning how to build a blockchain from scratch with Rust, guided by @web3dev_! 🚀 Now I know how to implement generic types, use the Num crate, make the balances and system pallets generic and configurable, and understand tight coupling. Join me at https://build.w3d.community/ and let's build the future together! #RustLang #Polkadot #Blockchain #Web3",
"file": "Lesson_7_Tight_Coupling.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing your understanding of tight coupling and upload it below.",
"title": "Lesson 7: Tight Coupling",
"submission_title": "Upload a screenshot of your terminal"
}
],
"Section_2": [
{
"file": "Lesson_1_System_Pallet.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the implementation of the system pallet and upload it below.",
"title": "Lesson 1: System Pallet",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_2_Block_Number_and_Nonce.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the block number and nonce implementation and upload it below.",
"title": "Lesson 2: Block Number and Nonce",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_3_Runtime.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the runtime implementation and upload it below.",
"title": "Lesson 3: Runtime",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_4_Executing_Runtime.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the execution of the runtime and upload it below.",
"title": "Lesson 4: Executing Runtime",
"submission_title": "Upload a screenshot of your terminal"
},
{
"twitter": "I just finished the second section of learning how to build a blockchain from scratch with Rust, guided by @web3dev_! 🚀 Now I know how to implement the system pallet, handle block numbers and nonce, create and manage runtime, execute the runtime, and debug runtime. Join me at https://build.w3d.community/ and let's build the future together! #RustLang #Polkadot #Blockchain #Web3",
"file": "Lesson_5_Runtime_Debug.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the runtime debug process and upload it below.",
"title": "Lesson 5: Runtime Debug",
"submission_title": "Upload a screenshot of your terminal"
}
],
"Section_5": [
{
"file": "Lesson_1_The_Proof_of_Existence_Pallet.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the implementation of the Proof of Existence pallet and upload it below.",
"title": "Lesson 1: The Proof of Existence Pallet",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_2_Proof_Of_Existence_Functions.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the implementation of Proof of Existence functions and upload it below.",
"title": "Lesson 2: Proof Of Existence Functions",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_3_Proof_of_Existence_Dispatch.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the Proof of Existence dispatch implementation and upload it below.",
"title": "Lesson 3: Proof of Existence Dispatch",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_4_Integrate_Into_Runtime.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the integration into the runtime and upload it below.",
"title": "Lesson 4: Integrate Into Runtime",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_5_Add_Extrinsic_To_Block.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing how you added an extrinsic to the block and upload it below.",
"title": "Lesson 5: Add Extrinsic To Block",
"submission_title": "Upload a screenshot of your terminal"
}
],
"Section_4": [
{
"file": "Lesson_1_Executing_Blocks_and_Dispatching_Calls.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the execution of blocks and dispatching of calls and upload it below.",
"title": "Lesson 1: Executing Blocks and Dispatching Calls",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_2_Block_Type.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the implementation of block types and upload it below.",
"title": "Lesson 2: Block Type",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_3_Executing_Blocks.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the execution of blocks and upload it below.",
"title": "Lesson 3: Executing Blocks",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_4_Dispatching_Calls.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the dispatching of calls and upload it below.",
"title": "Lesson 4: Dispatching Calls",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_5_Execute_Block_With_Extrinsics.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the execution of a block with extrinsics and upload it below.",
"title": "Lesson 5: Execute Block With Extrinsics",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_6_Pallet_Level_Dispatch.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing pallet level dispatch and upload it below.",
"title": "Lesson 6: Pallet Level Dispatch",
"submission_title": "Upload a screenshot of your terminal"
},
{
"twitter": "I just finished the fourth section of learning how to build a blockchain from scratch with Rust, guided by @web3dev_! 🚀 Now I know how to execute blocks, dispatch calls, work with block types, execute blocks with extrinsics, and handle pallet level and nested dispatch. Join me at https://build.w3d.community/ and let's build the future together! #RustLang #Polkadot #Blockchain #Web3",
"file": "Lesson_7_Nested_Dispatch.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing nested dispatch and upload it below.",
"title": "Lesson 7: Nested Dispatch",
"submission_title": "Upload a screenshot of your terminal"
}
],
"Section_1": [
{
"file": "Lesson_1_Balances_Pallet.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the successful execution of the Balances Pallet and upload it below.",
"title": "Lesson 1: Balances Pallet",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_2_Add_State.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the addition of state and upload it below.",
"title": "Lesson 2: Add State",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_3_Store_And_Read.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the storing and reading of state and upload it below.",
"title": "Lesson 3: Store And Read",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_4_Basic_Tests.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the successful execution of basic tests and upload it below.",
"title": "Lesson 4: Basic Tests",
"submission_title": "Upload a screenshot of your terminal"
},
{
"twitter": "I just finished the first section of learning how to build a blockchain from scratch with Rust, guided by @web3dev_! 🚀 Now I know how to create and manage a balances pallet, add and manage state, store and read data, write basic tests, and implement balance transfers. Join me at https://build.w3d.community/ and let's build the future together! #RustLang #Polkadot #Blockchain #Web3",
"file": "Lesson_5_Transfer_Balance.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the successful transfer of balance and upload it below.",
"title": "Lesson 5: Transfer Balance",
"submission_title": "Upload a screenshot of your terminal"
}
],
"Section_0": [
{
"file": "Lesson_1_What_Are_We_Building.md",
"submission_type": "text",
"submission_text": "Are you ready to start? Please type how are you feelind before you start the course.",
"title": "Lesson 1: What are we building",
"submission_title": "Star Now!"
},
{
"twitter": "I just started to learn Rust with @web3dev_ - join me at https://build.w3d.community/",
"file": "Lesson_2_Requirements.md",
"submission_type": "text",
"submission_text": "Have you installed the required software?",
"title": "Lesson 2: Requirements",
"submission_title": "Requirements Installed!"
}
]
}
}
},
"analytics": [
{
"photoUrls": [],
"students": 20,
"section": "Section_1"
},
{
"photoUrls": [],
"students": 10,
"section": "Section_2"
},
{
"photoUrls": ["https://avatars.githubusercontent.com/u/77552?v=4"],
"students": 5,
"section": "Section_3"
}
]
},
"Solana_App": {
"image_url": "https://firebasestorage.googleapis.com/v0/b/web3dev-bootcamp.appspot.com/o/courses_cover%2FSolana_And_Web3.png?alt=media&token=bad7dae5-ad5a-4bdc-9d84-d14d572e334e",
"active": true,
"index": 1,
"home": true,
"tags": ["rust", "blockchain", "polkadot", "substrate"],
"resized_img_url": "https://firebasestorage.googleapis.com/v0/b/web3dev-development.appspot.com/o/courses_cover%2FRust_State_Machine_Resized.png?alt=media&token=73d4418c-8a0a-4115-9997-512341a0ed82",
"nft_title": "Solidity NFT",
"metadata": {
"pt-BR": {
"difficulty": "Intermediário",
"duration": "2 semanas",
"description": "<p>Olá, futuro mago do blockchain! 🌟</p> <p>Pronto para mergulhar no mundo do Rust e blockchain, e dominar o SDK do Polkadot como um profissional? Este tutorial guiado é o seu ingresso de ouro. Sabemos que o maior obstáculo para construir seu primeiro blockchain com o SDK do Polkadot é lidar com os recursos avançados do Rust e decifrar a mágica por trás daqueles macros bacanas do Substrate. Mas não se preocupe, estamos aqui para ajudar!</p> <p>Neste tutorial, você vai arregaçar as mangas e construir um projeto puro em Rust do zero. Você vai replicar todos os truques legais que o SDK do Polkadot usa, dando a você uma visão clara do mago por trás da cortina. Ao final, você terá uma compreensão sólida do que está acontecendo nos bastidores.</p> <p><strong>Para quem é isso?</strong></p> <ul> <li>Novatos totais em Rust 🌱</li> <li>Iniciantes em blockchain 💡</li> <li>Mentes curiosas querendo desmistificar o SDK do Polkadot 🔍</li> </ul> <p>Não se preocupe se você ainda não é um guru de Rust ou blockchain. No entanto, um pouco de preparação ajuda bastante. Recomendamos fortemente que você dê uma olhada nos primeiros 11 capítulos do Livro do Rust (<a href='https://doc.rust-lang.org/book/' target='_blank'>https://doc.rust-lang.org/book/</a>). Não se preocupe em dominar todos os detalhes; apenas familiarize-se com conceitos como propriedade, tipos de dados básicos, structs, enums, crates, tratamento de erros, traits, genéricos e testes.</p> <p>E então, você está dentro? Vamos embarcar juntos nesta aventura de codificação e desvendar os segredos da mágica do Rust e do SDK do Polkadot. Inscreva-se agora e comece sua jornada!</p>",
"title": "Solana App",
"sections": {
"Section_6": [
{
"file": "Lesson_1_Rust_Macros.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a implementação de macros Rust e faça o upload abaixo.",
"title": "Lição 1: Rust Macros",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_2_Adding_Call_Macro_to_Balances.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a adição de macros de chamada aos balances e faça o upload abaixo.",
"title": "Lição 2: Adicionando Macro de Chamada aos Balances",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_3_Adding_Call_Macro_to_PoE.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a adição de macros de chamada ao PoE e faça o upload abaixo.",
"title": "Lição 3: Adicionando Macro de Chamada ao PoE",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_4_Use_the_Runtime_Macro.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando o uso do macro runtime e faça o upload abaixo.",
"title": "Lição 4: Usando a Macro Runtime",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"twitter": "Acabei de concluir o curso completo sobre a construção de uma blockchain do zero com Rust, guiado por @web3dev_! 🚀 Agora domino macros Rust, adicionei macros de chamada aos balances e PoE, e utilizei o macro runtime. Junte-se a mim em https://build.w3d.community/ e vamos construir o futuro juntos! #RustLang #Polkadot #Blockchain #Web3",
"file": "Lesson_5_Course_Completed.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando seu projeto final e faça o upload abaixo.",
"title": "Lição 5: Curso completo",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
}
],
"Section_3": [
{
"file": "Lesson_1_Generic_Types.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a implementação de tipos Genéricos e faça o upload abaixo.",
"title": "Lição 1: Tipos Genéricos",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_2_Num_Crate.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a implementação do Num Crate e faça o upload abaixo.",
"title": "Lição 2: Num Crate",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_3_Make_Balances_Pallet_Generic.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando como você tornou o Balances Pallet genérico e faça o upload abaixo.",
"title": "Lição 3: Tornar o Balances Pallet Genérico",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_4_Make_System_Pallet_Generic.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando como você tornou o System Pallet genérico e faça o upload abaixo.",
"title": "Lição 4: Tornar o System Pallet Genérico",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_5_Make_System_Configurable.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando como você tornou o System configurável e faça o upload abaixo.",
"title": "Lição 5: Tornar o System Configurável",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_6_Make_Balances_Configurable.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando como você tornou o Balances configurável e faça o upload abaixo.",
"title": "Lição 6: Tornar o Balances Configurável",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"twitter": "Acabei de concluir a terceira seção do aprendizado de como construir uma blockchain do zero com Rust, guiado por @web3dev_! 🚀 Agora sei como implementar Generic Types, usar o Num Crate, tornar os pallets Balances e System genéricos e configuráveis, e entender o Tight Coupling. Junte-se a mim em https://build.w3d.community/ e vamos construir o futuro juntos! #RustLang #Polkadot #Blockchain #Web3",
"file": "Lesson_7_Tight_Coupling.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando seu entendimento sobre Tight Coupling e faça o upload abaixo.",
"title": "Lição 7: Tight Coupling",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
}
],
"Section_2": [
{
"file": "Lesson_1_System_Pallet.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a implementação do System Pallet e faça o upload abaixo.",
"title": "Lição 1: System Pallet",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_2_Block_Number_and_Nonce.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a implementação de Block Number e Nonce e faça o upload abaixo.",
"title": "Lição 2: Block Number e Nonce",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_3_Runtime.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a implementação do Runtime e faça o upload abaixo.",
"title": "Lição 3: Runtime",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_4_Executing_Runtime.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a execução do Runtime e faça o upload abaixo.",
"title": "Lição 4: Executing Runtime",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"twitter": "Acabei de concluir a segunda seção do aprendizado de como construir uma blockchain do zero com Rust, guiado por @web3dev_! 🚀 Agora sei como implementar o System Pallet, lidar com Block Number e Nonce, criar e gerenciar Runtime, executar o Runtime e depurar o Runtime. Junte-se a mim em https://build.w3d.community/ e vamos construir o futuro juntos! #RustLang #Polkadot #Blockchain #Web3",
"file": "Lesson_5_Runtime_Debug.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando o processo de depuração do Runtime e faça o upload abaixo.",
"title": "Lição 5: Runtime Debug",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
}
],
"Section_5": [
{
"file": "Lesson_1_The_Proof_of_Existence_Pallet.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a implementação do Proof of Existence Pallet e faça o upload abaixo.",
"title": "Lição 1: O Pallet de Prova de Existência",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_2_Proof_Of_Existence_Functions.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a implementação das funções Proof of Existence e faça o upload abaixo.",
"title": "Lição 2: Funções de Prova de Existência",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_3_Proof_of_Existence_Dispatch.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a implementação do despacho Proof of Existence e faça o upload abaixo.",
"title": "Lição 3: Despacho de Prova de Existência",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_4_Integrate_Into_Runtime.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a integração no runtime e faça o upload abaixo.",
"title": "Lição 4: Integrando ao Runtime",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_5_Add_Extrinsic_To_Block.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando como você adicionou um extrínseco ao bloco e faça o upload abaixo.",
"title": "Lição 5: Adicionando Extrínseco ao Bloco",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
}
],
"Section_4": [
{
"file": "Lesson_1_Executing_Blocks_and_Dispatching_Calls.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a execução de blocos e o despacho de chamadas e faça o upload abaixo.",
"title": "Lição 1: Executando Blocos e Despachando Chamadas",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_2_Block_Type.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a implementação de tipos de bloco e faça o upload abaixo.",
"title": "Lição 2: Block Type",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_3_Executing_Blocks.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a execução de blocos e faça o upload abaixo.",
"title": "Lição 3: Executando Blocos",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_4_Dispatching_Calls.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando o despacho de chamadas e faça o upload abaixo.",
"title": "Lição 4: Despachando Chamadas",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_5_Execute_Block_With_Extrinsics.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a execução de um bloco com extrínsecos e faça o upload abaixo.",
"title": "Lição 5: Executando Bloco com Extrínsecos",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_6_Pallet_Level_Dispatch.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando o despacho no nível de pallet e faça o upload abaixo.",
"title": "Lição 6: Despacho no Nível de Pallet",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"twitter": "Acabei de concluir a quarta seção do aprendizado de como construir uma blockchain do zero com Rust, guiado por @web3dev_! 🚀 Agora sei como executar blocos, despachar chamadas, trabalhar com tipos de blocos, executar blocos com extrínsecos, e lidar com despacho no nível de pallet e despacho aninhado. Junte-se a mim em https://build.w3d.community/ e vamos construir o futuro juntos! #RustLang #Polkadot #Blockchain #Web3",
"file": "Lesson_7_Nested_Dispatch.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando o despacho aninhado e faça o upload abaixo.",
"title": "Lição 7: Nested Dispatch",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
}
],
"Section_1": [
{
"file": "Lesson_1_Balances_Pallet.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a execução bem-sucedida do Balances Pallet e faça o upload abaixo.",
"title": "Lição 1: Balances Pallet",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_2_Add_State.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a adição de estado e faça o upload abaixo.",
"title": "Lição 2: Adicionar Estado",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_3_Store_And_Read.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando o armazenamento e leitura de estado e faça o upload abaixo.",
"title": "Lição 3: Armazenar e Ler",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"file": "Lesson_4_Basic_Tests.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a execução bem-sucedida de testes básicos e faça o upload abaixo.",
"title": "Lição 4: Testes Básicos",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
},
{
"twitter": "Acabei de concluir a primeira seção do aprendizado de como construir uma blockchain do zero com Rust, guiado por @web3dev_! 🚀 Agora sei como criar e gerenciar um pallet de saldos, adicionar e gerenciar estado, armazenar e ler dados, escrever testes básicos e implementar transferências de saldo. Junte-se a mim em https://build.w3d.community/ e vamos construir o futuro juntos! #RustLang #Polkadot #Blockchain #Web3",
"file": "Lesson_5_Transfer_Balance.md",
"submission_type": "upload",
"submission_text": "Tire uma captura de tela do seu terminal mostrando a transferência bem-sucedida de saldo e faça o upload abaixo.",
"title": "Lição 5: Transferência de Saldo",
"submission_title": "Faça o upload de uma captura de tela do seu terminal"
}
],
"Section_0": [
{
"file": "Lesson_1_What_Are_We_Building.md",
"submission_type": "text",
"submission_text": "Você está pronto para começar? Por favor, digite como você está se sentindo antes de iniciar o curso.",
"title": "Lição 1: O que estamos construindo",
"submission_title": "Comece Agora!"
},
{
"twitter": "Acabei de começar a aprender Rust com @web3dev_ - junte-se a mim em https://build.w3d.community/",
"file": "Lesson_2_Requirements.md",
"submission_type": "text",
"submission_text": "Você instalou o software necessário?",
"title": "Lição 2: Requisitos",
"submission_title": "Requisitos Instalados!"
}
]
}
},
"en": {
"description": "<p>Hey there, future blockchain wizard! 🌟</p> <p>Ready to dive into the world of Rust and blockchain, and tackle the Polkadot SDK like a pro? This guided tutorial is your golden ticket. We know the biggest hurdle in building your first blockchain with the Polkadot SDK is wrestling with advanced Rust features and deciphering the magic behind those nifty Substrate macros. But don’t worry, we’ve got your back!</p> <p>In this tutorial, you’ll roll up your sleeves and build a pure Rust project from scratch. You'll replicate all the cool tricks the Polkadot SDK uses, giving you a clear view of the wizard behind the curtain. By the end of it, you'll have a solid grasp of what's happening under the hood.</p> <p><strong>Who’s this for?</strong></p> <ul> <li>Total Rust rookies 🌱</li> <li>Blockchain beginners 💡</li> <li>Curious minds wanting to demystify the Polkadot SDK 🔍</li> </ul> <p>No worries if you're not a Rust or blockchain guru yet. However, a little prep work goes a long way. We highly recommend skimming through the first 11 chapters of the Rust Book (<a href=\"https://doc.rust-lang.org/book/\" target=\"_blank\">https://doc.rust-lang.org/book/</a>). Don't stress about mastering every detail; just get a feel for concepts like ownership, basic data types, structs, enums, crates, error handling, traits, generics, and tests.</p> <p>So, are you in? Let's embark on this coding adventure together and unlock the secrets of Rust and Polkadot SDK magic. Subscribe now and start your journey!</p>",
"difficulty": "Intermediate",
"duration": "2 weeks",
"title": "2 Master Rust and Blockchain",
"sections": {
"Section_6": [
{
"file": "Lesson_1_Rust_Macros.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the implementation of Rust macros and upload it below.",
"title": "Lesson 1: Rust Macros",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_2_Adding_Call_Macro_to_Balances.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the addition of call macros to balances and upload it below.",
"title": "Lesson 2: Adding Call Macro to Balances",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_3_Adding_Call_Macro_to_PoE.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the addition of call macros to PoE and upload it below.",
"title": "Lesson 3: Adding Call Macro to PoE",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_4_Use_the_Runtime_Macro.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the use of the runtime macro and upload it below.",
"title": "Lesson 4: Use the Runtime Macro",
"submission_title": "Upload a screenshot of your terminal"
},
{
"twitter": "I just completed the entire course on building a blockchain from scratch with Rust, guided by @web3dev_! 🚀 Now I have mastered Rust macros, added call macros to balances and PoE, and used the runtime macro. Join me at https://build.w3d.community/ and let's build the future together! #RustLang #Polkadot #Blockchain #Web3",
"file": "Lesson_5_Course_Completed.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing your final project and upload it below.",
"title": "Lesson 5: Course Completed",
"submission_title": "Upload a screenshot of your terminal"
}
],
"Section_3": [
{
"file": "Lesson_1_Generic_Types.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the implementation of generic types and upload it below.",
"title": "Lesson 1: Generic Types",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_2_Num_Crate.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing the implementation of the Num crate and upload it below.",
"title": "Lesson 2: Num Crate",
"submission_title": "Upload a screenshot of your terminal"
},
{
"file": "Lesson_3_Make_Balances_Pallet_Generic.md",
"submission_type": "upload",
"submission_text": "Take a screenshot of your terminal showing how you made the balances pallet generic and upload it below.",
"title": "Lesson 3: Make Balances Pallet Generic",
"submission_title": "Upload a screenshot of your terminal"
},