-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1942 lines (1258 loc) · 73.3 KB
/
index.html
File metadata and controls
1942 lines (1258 loc) · 73.3 KB
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
<!-- udacimak v1.2.1 -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>1</title>
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/plyr.css">
<link rel="stylesheet" href="assets/css/katex.min.css">
<link rel="stylesheet" href="assets/css/jquery.mCustomScrollbar.min.css">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="shortcut icon" type="image/png" href="assets/img/udacimak.png" />
</head>
<body>
<div class="">
<div id="">
<header class="container-fluild header">
<div class="container">
<div class="row">
<div class="col-12">
<div class="align-items-middle">
<h1 style="">Blockchain Developer</h1>
</div>
</div>
</div>
</div>
</header>
<main class="container">
<div class="row">
<div class="col-12">
<div>
<img src="img/32x.png" alt="Blockchain Developer" class="img-fluid">
<p><strong>Nanodegree key:</strong> nd1309</p>
<p><strong>Version:</strong> 1.0.0</p>
<p><strong>Locale:</strong> en-us</p>
<p><p>In this program, you'll work with the Bitcoin and Ethereum protocols, build projects for real-world application, and gain the essential skills for a career in this dynamic space. </p></p>
</div>
<div>
<h3>Content</h3>
<div>
<h4><strong>Part 01 :</strong> Term 1 | Blockchain Developer: Fundamentals</h4>
<p><p>Learn to identify fundamental transaction types, build a web service and API, and secure digital assets with your blockchain identity. Create a private blockchain, and a notarization web service. Use your blockchain identity to secure digital assets on the Ethereum platform with a smart contract. </p></p>
<ul>
<li>
<strong>Module 01:</strong> Blockchain Identity
<ul>
<li>
<details>
<summary>
<a href="Part 01-Module 01-Lesson 01_Welcome to the Blockchain Revolution/index.html"><strong>Lesson 01:</strong> Welcome to the Blockchain Revolution</a>
<p><p>In this lesson you are introduced to the Blockchain Revolution and get an overview of the Blockchain Developer Nanodegree program.</p></p>
</summary>
<ul>
<li>
<a href="Part 01-Module 01-Lesson 01_Welcome to the Blockchain Revolution/01. Welcome to the Nanodegree Program.html"><strong>Concept 01:</strong> Welcome to the Nanodegree Program</a>
</li>
<li>
<a href="Part 01-Module 01-Lesson 01_Welcome to the Blockchain Revolution/02. Why Blockchain.html"><strong>Concept 02:</strong> Why Blockchain?</a>
</li>
<li>
<a href="Part 01-Module 01-Lesson 01_Welcome to the Blockchain Revolution/03. Meet Your Instructors.html"><strong>Concept 03:</strong> Meet Your Instructors</a>
</li>
<li>
<a href="Part 01-Module 01-Lesson 01_Welcome to the Blockchain Revolution/04. Influence of Blockchain.html"><strong>Concept 04:</strong> Influence of Blockchain</a>
</li>
<li>
<a href="Part 01-Module 01-Lesson 01_Welcome to the Blockchain Revolution/05. Blockchain Overview.html"><strong>Concept 05:</strong> Blockchain Overview</a>
</li>
<li>
<a href="Part 01-Module 01-Lesson 01_Welcome to the Blockchain Revolution/06. Program Overview.html"><strong>Concept 06:</strong> Program Overview</a>
</li>
<li>
<a href="Part 01-Module 01-Lesson 01_Welcome to the Blockchain Revolution/07. Nanodegree Resources.html"><strong>Concept 07:</strong> Nanodegree Resources</a>
</li>
<li>
<a href="Part 01-Module 01-Lesson 01_Welcome to the Blockchain Revolution/08. Introduction to Workspaces.html"><strong>Concept 08:</strong> Introduction to Workspaces</a>
</li>
<li>
<a href="Part 01-Module 01-Lesson 01_Welcome to the Blockchain Revolution/09. Practice Using a Workspace.html"><strong>Concept 09:</strong> Practice Using a Workspace</a>
</li>
<li>
<a href="Part 01-Module 01-Lesson 01_Welcome to the Blockchain Revolution/10. Blockchain Motivation.html"><strong>Concept 10:</strong> Blockchain Motivation</a>
</li>
<li>
<a href="Part 01-Module 01-Lesson 01_Welcome to the Blockchain Revolution/11. Tell us About Yourself.html"><strong>Concept 11:</strong> Tell us About Yourself</a>
</li>
<li>
<a href="Part 01-Module 01-Lesson 01_Welcome to the Blockchain Revolution/12. Looking Ahead.html"><strong>Concept 12:</strong> Looking Ahead</a>
</li>
</ul>
</details>
</li>
<li>
<details>
<summary>
<a href="Part 01-Module 01-Lesson 02_Career Services Available to You/index.html"><strong>Lesson 02:</strong> Career Services Available to You</a>
<p><p>The Careers team at Udacity is here to help you land your dream job - whether it's a new role or growing at your current company. Learn more about how we'll support you in your career growth.</p></p>
</summary>
<ul>
<li>
<a href="Part 01-Module 01-Lesson 02_Career Services Available to You/01. Meet the Careers Team.html"><strong>Concept 01:</strong> Meet the Careers Team</a>
</li>
<li>
<a href="Part 01-Module 01-Lesson 02_Career Services Available to You/02. Access Your Career Portal.html"><strong>Concept 02:</strong> Access Your Career Portal</a>
</li>
<li>
<a href="Part 01-Module 01-Lesson 02_Career Services Available to You/03. Your Udacity Professional Profile.html"><strong>Concept 03:</strong> Your Udacity Professional Profile</a>
</li>
</ul>
</details>
</li>
</ul>
</li>
<li>
<strong>Module 02:</strong> How to Get Help from Peers and Mentors
<ul>
<li>
<details>
<summary>
<a href="Part 01-Module 02-Lesson 01_Get Help from Peers and Mentors/index.html"><strong>Lesson 01:</strong> Get Help from Peers and Mentors</a>
<p><p>You are starting a challenging journey. Take 3 minutes to read how to get help with projects and content.</p></p>
</summary>
<ul>
<li>
<a href="Part 01-Module 02-Lesson 01_Get Help from Peers and Mentors/01. What It Takes.html"><strong>Concept 01:</strong> What It Takes</a>
</li>
<li>
<a href="Part 01-Module 02-Lesson 01_Get Help from Peers and Mentors/02. Reviews.html"><strong>Concept 02:</strong> Reviews</a>
</li>
<li>
<a href="Part 01-Module 02-Lesson 01_Get Help from Peers and Mentors/03. Knowledge.html"><strong>Concept 03:</strong> Knowledge</a>
</li>
<li>
<a href="Part 01-Module 02-Lesson 01_Get Help from Peers and Mentors/04. Student Hub.html"><strong>Concept 04:</strong> Student Hub</a>
</li>
</ul>
</details>
</li>
<li>
<details>
<summary>
<a href="Part 01-Module 02-Lesson 02_Get Help with Your Account/index.html"><strong>Lesson 02:</strong> Get Help with Your Account</a>
<p><p>What to do if you have questions about your account or general questions about the program.</p></p>
</summary>
<ul>
<li>
<a href="Part 01-Module 02-Lesson 02_Get Help with Your Account/01. FAQ.html"><strong>Concept 01:</strong> FAQ</a>
</li>
<li>
<a href="Part 01-Module 02-Lesson 02_Get Help with Your Account/02. Support.html"><strong>Concept 02:</strong> Support</a>
</li>
</ul>
</details>
</li>
</ul>
</li>
</ul>
</div>
<div>
<h4><strong>Part 02 :</strong> Blockchain Identity</h4>
<p></p>
<ul>
<li>
<strong>Module 01:</strong> Blockchain Identity
<ul>
<li>
<details>
<summary>
<a href="Part 02-Module 01-Lesson 01_Blockchain Basics/index.html"><strong>Lesson 01:</strong> Blockchain Basics</a>
<p><p>In this lesson, you learn the basics of Blockchain are introduced to topics like Bitcoin to begin creating your very own bitcoin identity.</p></p>
</summary>
<ul>
<li>
<a href="Part 02-Module 01-Lesson 01_Blockchain Basics/01. Lesson Introduction.html"><strong>Concept 01:</strong> Lesson Introduction</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 01_Blockchain Basics/02. Interview Blockchain Fundamentals.html"><strong>Concept 02:</strong> Interview: Blockchain Fundamentals</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 01_Blockchain Basics/03. Financial Transactions.html"><strong>Concept 03:</strong> Financial Transactions</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 01_Blockchain Basics/04. Introduction to Bitcoin.html"><strong>Concept 04:</strong> Introduction to Bitcoin</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 01_Blockchain Basics/05. Hashing.html"><strong>Concept 05:</strong> Hashing</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 01_Blockchain Basics/06. Practice Hashing.html"><strong>Concept 06:</strong> Practice Hashing</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 01_Blockchain Basics/07. Blocks.html"><strong>Concept 07:</strong> Blocks</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 01_Blockchain Basics/08. Practice Block.html"><strong>Concept 08:</strong> Practice Block</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 01_Blockchain Basics/09. Blockchain.html"><strong>Concept 09:</strong> Blockchain</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 01_Blockchain Basics/10. Distributed Peer-to-Peer Network.html"><strong>Concept 10:</strong> Distributed Peer-to-Peer Network</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 01_Blockchain Basics/11. Memory Pool.html"><strong>Concept 11:</strong> Memory Pool</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 01_Blockchain Basics/12. Consensus.html"><strong>Concept 12:</strong> Consensus</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 01_Blockchain Basics/13. Proof of Work.html"><strong>Concept 13:</strong> Proof of Work</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 01_Blockchain Basics/14. Proof of Stake.html"><strong>Concept 14:</strong> Proof of Stake</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 01_Blockchain Basics/15. Delegated Byzantine Fault Tolerance.html"><strong>Concept 15:</strong> Delegated Byzantine Fault Tolerance</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 01_Blockchain Basics/16. Other Consensus Models.html"><strong>Concept 16:</strong> Other Consensus Models</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 01_Blockchain Basics/17. Recap of Achieving Consensus Protocols.html"><strong>Concept 17:</strong> Recap of Achieving Consensus Protocols</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 01_Blockchain Basics/18. Interview Blockchain Fundamentals.html"><strong>Concept 18:</strong> Interview: Blockchain Fundamentals</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 01_Blockchain Basics/19. Lesson Recap.html"><strong>Concept 19:</strong> Lesson Recap</a>
</li>
</ul>
</details>
</li>
<li>
<details>
<summary>
<a href="Part 02-Module 01-Lesson 02_Blockchain Transactions/index.html"><strong>Lesson 02:</strong> Blockchain Transactions</a>
<p><p>Identify various wallet types, private/public key generation between non-deterministic, sequential deterministic, and hierarchical deterministic wallets.</p></p>
</summary>
<ul>
<li>
<a href="Part 02-Module 01-Lesson 02_Blockchain Transactions/01. Lesson Introduction.html"><strong>Concept 01:</strong> Lesson Introduction</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 02_Blockchain Transactions/02. Interview Blockchain Identity.html"><strong>Concept 02:</strong> Interview: Blockchain Identity</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 02_Blockchain Transactions/03. Blockchain Identity.html"><strong>Concept 03:</strong> Blockchain Identity</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 02_Blockchain Transactions/04. Wallet Overview.html"><strong>Concept 04:</strong> Wallet Overview</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 02_Blockchain Transactions/05. Wallet Types.html"><strong>Concept 05:</strong> Wallet Types</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 02_Blockchain Transactions/06. Private Keys.html"><strong>Concept 06:</strong> Private Keys</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 02_Blockchain Transactions/07. Get Your Own Wallet.html"><strong>Concept 07:</strong> Get Your Own Wallet</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 02_Blockchain Transactions/08. Restoring Blockchain Identity.html"><strong>Concept 08:</strong> Restoring Blockchain Identity</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 02_Blockchain Transactions/09. Sign a Transaction.html"><strong>Concept 09:</strong> Sign a Transaction</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 02_Blockchain Transactions/10. Blockchain Transaction Lifecycle.html"><strong>Concept 10:</strong> Blockchain Transaction Lifecycle</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 02_Blockchain Transactions/11. Interview Blockchain Identity.html"><strong>Concept 11:</strong> Interview: Blockchain Identity</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 02_Blockchain Transactions/12. Course Recap.html"><strong>Concept 12:</strong> Course Recap</a>
</li>
</ul>
</details>
</li>
<li>
<details>
<summary>
<a href="Part 02-Module 01-Lesson 03_Verify Message Signature/index.html"><strong>Lesson 03:</strong> Verify Message Signature</a>
<p><p>Use Bitcoin Javascript Libraries to sign and verify messages that authenticate transactions </p></p>
</summary>
<ul>
<li>
<a href="Part 02-Module 01-Lesson 03_Verify Message Signature/01. What Will You Learn.html"><strong>Concept 01:</strong> What Will You Learn?</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 03_Verify Message Signature/02. Sign and Verify a Message.html"><strong>Concept 02:</strong> Sign and Verify a Message</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 03_Verify Message Signature/03. Step 1 Generate Private Public Keys using a Wallet Address.html"><strong>Concept 03:</strong> Step 1: Generate Private Public Keys using a Wallet Address</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 03_Verify Message Signature/04. Step 2 Sign a Message.html"><strong>Concept 04:</strong> Step 2: Sign a Message</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 03_Verify Message Signature/05. Step 3 Verify a Message Signature.html"><strong>Concept 05:</strong> Step 3: Verify a Message Signature</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 03_Verify Message Signature/06. Quiz Verify Message Signature.html"><strong>Concept 06:</strong> Quiz: Verify Message Signature</a>
</li>
</ul>
</details>
</li>
<li>
<details>
<summary>
<a href="Part 02-Module 01-Lesson 04_Manage Your Blockchain Identity/index.html"><strong>Lesson 04:</strong> Manage Your Blockchain Identity</a>
<p><p>Learn to create your identity on the Blockchain and interact with an existing web service.</p></p>
<p><a href="Part 02-Module 01-Lesson 04_Manage Your Blockchain Identity/Project Description - Managing your Blockchain Identity.html">Project Description - Managing your Blockchain Identity</a></p>
<p><a href="Part 02-Module 01-Lesson 04_Manage Your Blockchain Identity/Project Rubric - Managing your Blockchain Identity.html">Project Rubric - Managing your Blockchain Identity</a></p>
</summary>
<ul>
<li>
<a href="Part 02-Module 01-Lesson 04_Manage Your Blockchain Identity/01. Project Overview.html"><strong>Concept 01:</strong> Project Overview</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 04_Manage Your Blockchain Identity/02. Build Your Project.html"><strong>Concept 02:</strong> Build Your Project</a>
</li>
<li>
<a href="Part 02-Module 01-Lesson 04_Manage Your Blockchain Identity/03. Prepare for Submission.html"><strong>Concept 03:</strong> Prepare for Submission</a>
</li>
</ul>
</details>
</li>
</ul>
</li>
</ul>
</div>
<div>
<h4><strong>Part 03 :</strong> Blockchain Data</h4>
<p></p>
<ul>
<li>
<strong>Module 01:</strong> Blockchain Data
<ul>
<li>
<details>
<summary>
<a href="Part 03-Module 01-Lesson 01_Blockchain Data Overview/index.html"><strong>Lesson 01:</strong> Blockchain Data Overview</a>
<p><p>Learn the general concepts of a blockchain data model.</p></p>
</summary>
<ul>
<li>
<a href="Part 03-Module 01-Lesson 01_Blockchain Data Overview/01. Lesson Overview.html"><strong>Concept 01:</strong> Lesson Overview</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 01_Blockchain Data Overview/02. Interview Blockchain as a Dataset.html"><strong>Concept 02:</strong> Interview: Blockchain as a Dataset</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 01_Blockchain Data Overview/03. Blockchain vs Traditional Databases.html"><strong>Concept 03:</strong> Blockchain vs Traditional Databases</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 01_Blockchain Data Overview/04. Do You Need a Blockchain.html"><strong>Concept 04:</strong> Do You Need a Blockchain?</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 01_Blockchain Data Overview/05. Blockchain Types.html"><strong>Concept 05:</strong> Blockchain Types</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 01_Blockchain Data Overview/06. Interview Blockchain Types.html"><strong>Concept 06:</strong> Interview: Blockchain Types</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 01_Blockchain Data Overview/07. P2P Network vs Client-Server Model.html"><strong>Concept 07:</strong> P2P Network vs Client-Server Model</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 01_Blockchain Data Overview/08. Explore Blockchain Data.html"><strong>Concept 08:</strong> Explore Blockchain Data</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 01_Blockchain Data Overview/09. Practice Block Data.html"><strong>Concept 09:</strong> Practice Block Data</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 01_Blockchain Data Overview/10. Explore Bitcoin's Codebase.html"><strong>Concept 10:</strong> Explore Bitcoin's Codebase</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 01_Blockchain Data Overview/11. BIPs and Forks.html"><strong>Concept 11:</strong> BIPs and Forks</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 01_Blockchain Data Overview/12. Quiz Softfork vs Hardfork.html"><strong>Concept 12:</strong> Quiz: Softfork vs Hardfork</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 01_Blockchain Data Overview/13. Interview How to Get Involved.html"><strong>Concept 13:</strong> Interview: How to Get Involved</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 01_Blockchain Data Overview/14. Lesson Summary.html"><strong>Concept 14:</strong> Lesson Summary</a>
</li>
</ul>
</details>
</li>
<li>
<details>
<summary>
<a href="Part 03-Module 01-Lesson 02_Bitcoin Core Testnet/index.html"><strong>Lesson 02:</strong> Bitcoin Core Testnet</a>
<p><p>Learn the benefits of utilizing the Bitcoin Core testnet. Also, understand the difference between the public testnet and regression testing.</p></p>
</summary>
<ul>
<li>
<a href="Part 03-Module 01-Lesson 02_Bitcoin Core Testnet/01. Lesson Introduction.html"><strong>Concept 01:</strong> Lesson Introduction</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 02_Bitcoin Core Testnet/02. Bitcoin Core Motivation.html"><strong>Concept 02:</strong> Bitcoin Core Motivation</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 02_Bitcoin Core Testnet/03. Bitcoin Core - Overview.html"><strong>Concept 03:</strong> Bitcoin Core - Overview</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 02_Bitcoin Core Testnet/04. Bitcoin Core - Networks.html"><strong>Concept 04:</strong> Bitcoin Core - Networks</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 02_Bitcoin Core Testnet/05. Mainnet vs Testnet.html"><strong>Concept 05:</strong> Mainnet vs Testnet</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 02_Bitcoin Core Testnet/06. Testnet vs Regression Testing.html"><strong>Concept 06:</strong> Testnet vs Regression Testing</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 02_Bitcoin Core Testnet/07. Data Warnings and Bitcoin.config Setup.html"><strong>Concept 07:</strong> Data Warnings and Bitcoin.config Setup</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 02_Bitcoin Core Testnet/08. Bitcoin Core - Getting Started.html"><strong>Concept 08:</strong> Bitcoin Core - Getting Started</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 02_Bitcoin Core Testnet/09. Bitcoin Core - Wallet Overview.html"><strong>Concept 09:</strong> Bitcoin Core - Wallet Overview</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 02_Bitcoin Core Testnet/10. Bitcoin Core - Network Demonstration.html"><strong>Concept 10:</strong> Bitcoin Core - Network Demonstration</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 02_Bitcoin Core Testnet/11. Get Testnet Coins.html"><strong>Concept 11:</strong> Get Testnet Coins</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 02_Bitcoin Core Testnet/12. Testnet Wallet Transactions.html"><strong>Concept 12:</strong> Testnet Wallet Transactions</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 02_Bitcoin Core Testnet/13. Testnet Wallet Transactions - Bitcoin Core v0.17.html"><strong>Concept 13:</strong> Testnet Wallet Transactions - Bitcoin Core v0.17:</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 02_Bitcoin Core Testnet/14. Block Explorer.html"><strong>Concept 14:</strong> Block Explorer</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 02_Bitcoin Core Testnet/15. End of Lesson Motivation.html"><strong>Concept 15:</strong> End of Lesson Motivation</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 02_Bitcoin Core Testnet/16. Lesson Recap.html"><strong>Concept 16:</strong> Lesson Recap</a>
</li>
</ul>
</details>
</li>
<li>
<details>
<summary>
<a href="Part 03-Module 01-Lesson 03_Bitcoin Debug Console/index.html"><strong>Lesson 03:</strong> Bitcoin Debug Console</a>
<p><p>Learn the tooling available to explore the Bitcoin core public blockchain.</p></p>
</summary>
<ul>
<li>
<a href="Part 03-Module 01-Lesson 03_Bitcoin Debug Console/01. Lesson Introduction.html"><strong>Concept 01:</strong> Lesson Introduction</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 03_Bitcoin Debug Console/02. Interview Debug Console.html"><strong>Concept 02:</strong> Interview: Debug Console</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 03_Bitcoin Debug Console/03. Terminal Overview.html"><strong>Concept 03:</strong> Terminal Overview</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 03_Bitcoin Debug Console/04. Debug Console.html"><strong>Concept 04:</strong> Debug Console</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 03_Bitcoin Debug Console/05. Blockchain Commands.html"><strong>Concept 05:</strong> Blockchain Commands</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 03_Bitcoin Debug Console/06. Hash Commands.html"><strong>Concept 06:</strong> Hash Commands</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 03_Bitcoin Debug Console/07. Block Commands.html"><strong>Concept 07:</strong> Block Commands</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 03_Bitcoin Debug Console/08. Wallet Commands.html"><strong>Concept 08:</strong> Wallet Commands</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 03_Bitcoin Debug Console/09. Mempool Commands.html"><strong>Concept 09:</strong> Mempool Commands</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 03_Bitcoin Debug Console/10. Transaction Commands.html"><strong>Concept 10:</strong> Transaction Commands</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 03_Bitcoin Debug Console/11. Signature Commands.html"><strong>Concept 11:</strong> Signature Commands</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 03_Bitcoin Debug Console/12. Network Commands.html"><strong>Concept 12:</strong> Network Commands</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 03_Bitcoin Debug Console/13. Mining Commands.html"><strong>Concept 13:</strong> Mining Commands</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 03_Bitcoin Debug Console/14. Bitcoin-CLI.html"><strong>Concept 14:</strong> Bitcoin-CLI</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 03_Bitcoin Debug Console/15. Interview Use Help!.html"><strong>Concept 15:</strong> Interview: Use Help!</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 03_Bitcoin Debug Console/16. Lesson Recap.html"><strong>Concept 16:</strong> Lesson Recap</a>
</li>
</ul>
</details>
</li>
<li>
<details>
<summary>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/index.html"><strong>Lesson 04:</strong> Blockchain Data</a>
<p><p>Learn the relationship between the transaction lifecycle using Bitcoin core focusing on the bounders with embedding data.</p></p>
</summary>
<ul>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/01. Lesson Overview.html"><strong>Concept 01:</strong> Lesson Overview</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/02. Blockchain Data Motivation.html"><strong>Concept 02:</strong> Blockchain Data Motivation</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/03. Blockchain Data Models Overview.html"><strong>Concept 03:</strong> Blockchain Data Models Overview</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/04. Transactions - Inputs and Outputs.html"><strong>Concept 04:</strong> Transactions - Inputs and Outputs</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/05. Transaction Data Models.html"><strong>Concept 05:</strong> Transaction Data Models</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/06. Bitcoin Scripts.html"><strong>Concept 06:</strong> Bitcoin Scripts</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/07. Script Opcodes.html"><strong>Concept 07:</strong> Script Opcodes</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/08. Opcodes.html"><strong>Concept 08:</strong> Opcodes</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/09. Attributes of Script.html"><strong>Concept 09:</strong> Attributes of Script</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/10. Raw Transaction Review.html"><strong>Concept 10:</strong> Raw Transaction Review</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/11. Create Raw Transaction Motivation.html"><strong>Concept 11:</strong> Create Raw Transaction Motivation</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/12. Setup for Creating a Transaction.html"><strong>Concept 12:</strong> Setup for Creating a Transaction</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/13. Create a Transaction Step 1.html"><strong>Concept 13:</strong> Create a Transaction: Step 1</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/14. Create a Transaction Step 2.html"><strong>Concept 14:</strong> Create a Transaction: Step 2</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/15. Create a Transaction Step 3.html"><strong>Concept 15:</strong> Create a Transaction: Step 3</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/16. Create a Transaction Step 4.html"><strong>Concept 16:</strong> Create a Transaction: Step 4</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/17. Create a Transaction Step 5.html"><strong>Concept 17:</strong> Create a Transaction: Step 5</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/18. Create a Transaction Step 6.html"><strong>Concept 18:</strong> Create a Transaction: Step 6</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/19. Create a Transaction Step 7.html"><strong>Concept 19:</strong> Create a Transaction: Step 7</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/20. Embedding Data in Transactions.html"><strong>Concept 20:</strong> Embedding Data in Transactions</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/21. Embedding Data in Bitcoin Core.html"><strong>Concept 21:</strong> Embedding Data in Bitcoin Core</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/22. Ethics of Embedding Data.html"><strong>Concept 22:</strong> Ethics of Embedding Data</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 04_Blockchain Data/23. Lesson Summary and Project Prep Overview.html"><strong>Concept 23:</strong> Lesson Summary and Project Prep Overview</a>
</li>
</ul>
</details>
</li>
<li>
<details>
<summary>
<a href="Part 03-Module 01-Lesson 05_Private Blockchains/index.html"><strong>Lesson 05:</strong> Private Blockchains</a>
<p><p>Learn how to interact between private/public Blockchains and apply the Blockchain data model to create your own private Blockchain.</p></p>
</summary>
<ul>
<li>
<a href="Part 03-Module 01-Lesson 05_Private Blockchains/01. Lesson Introduction.html"><strong>Concept 01:</strong> Lesson Introduction</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 05_Private Blockchains/02. Public and Private Blockchains.html"><strong>Concept 02:</strong> Public and Private Blockchains</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 05_Private Blockchains/03. Public and Private Blockchain Interaction.html"><strong>Concept 03:</strong> Public and Private Blockchain Interaction</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 05_Private Blockchains/04. Build a Simple Private Blockchain.html"><strong>Concept 04:</strong> Build a Simple Private Blockchain</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 05_Private Blockchains/05. Working with Your Workspace.html"><strong>Concept 05:</strong> Working with Your Workspace</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 05_Private Blockchains/06. Block Data Model.html"><strong>Concept 06:</strong> Block Data Model</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 05_Private Blockchains/07. Create New Blocks.html"><strong>Concept 07:</strong> Create New Blocks</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 05_Private Blockchains/08. Store Blocks.html"><strong>Concept 08:</strong> Store Blocks</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 05_Private Blockchains/09. Link Blocks.html"><strong>Concept 09:</strong> Link Blocks</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 05_Private Blockchains/10. Block Height and Timestamp.html"><strong>Concept 10:</strong> Block Height and Timestamp</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 05_Private Blockchains/11. LevelDB to Persist Data.html"><strong>Concept 11:</strong> LevelDB to Persist Data</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 05_Private Blockchains/12. Practice LevelDB and Promises.html"><strong>Concept 12:</strong> Practice LevelDB and Promises</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 05_Private Blockchains/13. Lesson Recap.html"><strong>Concept 13:</strong> Lesson Recap</a>
</li>
<li>
<a href="Part 03-Module 01-Lesson 05_Private Blockchains/14. Project Prep.html"><strong>Concept 14:</strong> Project Prep</a>
</li>
</ul>
</details>
</li>
<li>