-
Notifications
You must be signed in to change notification settings - Fork 5
/
Master_File.excalidraw
17280 lines (17280 loc) · 755 KB
/
Master_File.excalidraw
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
{
"type": "excalidraw",
"version": 2,
"source": "https://excalidraw.com",
"elements": [
{
"type": "rectangle",
"version": 846,
"versionNonce": 725725544,
"index": "Zz",
"isDeleted": false,
"id": "TgVzmK1oQTC3bf6DrKGPl",
"fillStyle": "hachure",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 2947.761897040311,
"y": 2516.3064049837303,
"strokeColor": "#1971c2",
"backgroundColor": "#a5d8ff",
"width": 969.1130115414696,
"height": 1600.6403906289424,
"seed": 1000258664,
"groupIds": [],
"frameId": null,
"roundness": {
"type": 3
},
"boundElements": [
{
"id": "nSsAGSDq0TGztcTdzhS-x",
"type": "arrow"
}
],
"updated": 1715879524257,
"link": null,
"locked": false
},
{
"type": "rectangle",
"version": 304,
"versionNonce": 1211110680,
"index": "a4",
"isDeleted": false,
"id": "ivVHIFo-84kUMFAMoJOPQ",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 1749.5887067972103,
"y": 2042.0493416281017,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"width": 530.0308601764629,
"height": 58.82048504314912,
"seed": 1224366360,
"groupIds": [],
"frameId": null,
"roundness": {
"type": 3
},
"boundElements": [
{
"id": "6_7GaPGC2FZk620VHy2n8",
"type": "arrow"
}
],
"updated": 1715866355316,
"link": null,
"locked": false
},
{
"type": "text",
"version": 137,
"versionNonce": 1277867271,
"index": "a5",
"isDeleted": false,
"id": "9MjDhjxkt7cA3mJqSKUrj",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 1764.7576223876965,
"y": 2060.9096813205015,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"width": 501.6197204589844,
"height": 25,
"seed": 836289896,
"groupIds": [],
"frameId": null,
"roundness": null,
"boundElements": [],
"updated": 1722276650075,
"link": null,
"locked": false,
"fontSize": 20,
"fontFamily": 1,
"text": "100xDevs's WEB3 ROADMAP - IMPLEMENTATION",
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "100xDevs's WEB3 ROADMAP - IMPLEMENTATION",
"autoResize": true,
"lineHeight": 1.25
},
{
"type": "arrow",
"version": 331,
"versionNonce": 323072872,
"index": "a7",
"isDeleted": false,
"id": "6_7GaPGC2FZk620VHy2n8",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 1752.0271164871892,
"y": 2096.955722356211,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"width": 180.51610178973033,
"height": 102.95780856695546,
"seed": 1766397976,
"groupIds": [],
"frameId": null,
"roundness": {
"type": 2
},
"boundElements": [],
"updated": 1715866363513,
"link": null,
"locked": false,
"startBinding": {
"elementId": "ivVHIFo-84kUMFAMoJOPQ",
"focus": 0.2743388443335383,
"gap": 1
},
"endBinding": null,
"lastCommittedPoint": null,
"startArrowhead": null,
"endArrowhead": "arrow",
"points": [
[
0,
0
],
[
-152.84682756986285,
27.01926587311482
],
[
-180.51610178973033,
102.95780856695546
]
]
},
{
"type": "ellipse",
"version": 103,
"versionNonce": 358105894,
"index": "a8",
"isDeleted": false,
"id": "jT6xEg6vG9kGEqE_hUDIi",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 1466.6523709110816,
"y": 2199.825691957389,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"width": 213.11489876902283,
"height": 75.76286476228552,
"seed": 1646326808,
"groupIds": [],
"frameId": null,
"roundness": {
"type": 2
},
"boundElements": [
{
"id": "zMYymimaQ1uxECsnRryVu",
"type": "arrow"
},
{
"id": "8SGg-D4hU7LHbspqss4AK",
"type": "arrow"
}
],
"updated": 1721844537850,
"link": null,
"locked": false
},
{
"type": "text",
"version": 113,
"versionNonce": 513043207,
"index": "a9",
"isDeleted": false,
"id": "w45eBkHdJW31RNuRs1epZ",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 1539.980339542019,
"y": 2227.1190154037295,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"width": 47.39997863769531,
"height": 25,
"seed": 1877882984,
"groupIds": [],
"frameId": null,
"roundness": null,
"boundElements": [],
"updated": 1721413350047,
"link": null,
"locked": false,
"fontSize": 20,
"fontFamily": 1,
"text": "0 - 1",
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "0 - 1",
"autoResize": true,
"lineHeight": 1.25
},
{
"type": "arrow",
"version": 507,
"versionNonce": 1298141288,
"index": "aA",
"isDeleted": false,
"id": "zMYymimaQ1uxECsnRryVu",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 1565.1303922233917,
"y": 2275.9574803759397,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"width": 202.44070764775847,
"height": 114.66849948439267,
"seed": 49285480,
"groupIds": [],
"frameId": null,
"roundness": {
"type": 2
},
"boundElements": [],
"updated": 1715866413320,
"link": null,
"locked": false,
"startBinding": {
"elementId": "jT6xEg6vG9kGEqE_hUDIi",
"focus": 0.1357221583190436,
"gap": 1
},
"endBinding": null,
"lastCommittedPoint": null,
"startArrowhead": null,
"endArrowhead": "arrow",
"points": [
[
0,
0
],
[
16.54183403519187,
98.73451109237976
],
[
202.44070764775847,
114.66849948439267
]
]
},
{
"type": "rectangle",
"version": 171,
"versionNonce": 595995496,
"index": "aB",
"isDeleted": false,
"id": "wL8NJ3dLQyvU9N0yxoFzy",
"fillStyle": "cross-hatch",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 1768.0735387553966,
"y": 2369.520033163349,
"strokeColor": "#1e1e1e",
"backgroundColor": "#b2f2bb",
"width": 278.62168588714417,
"height": 45.58139612118566,
"seed": 2008008728,
"groupIds": [],
"frameId": null,
"roundness": {
"type": 3
},
"boundElements": [
{
"id": "ESLop_uz8Ftwlk5vJVswA",
"type": "arrow"
}
],
"updated": 1715866472632,
"link": null,
"locked": false
},
{
"type": "text",
"version": 122,
"versionNonce": 327216361,
"index": "aC",
"isDeleted": false,
"id": "lSR7WWbWxL8umWSpkYjso",
"fillStyle": "cross-hatch",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 1854.1276167481574,
"y": 2379.618000669114,
"strokeColor": "#1e1e1e",
"backgroundColor": "#b2f2bb",
"width": 104.07991027832031,
"height": 25,
"seed": 61801752,
"groupIds": [],
"frameId": null,
"roundness": null,
"boundElements": [],
"updated": 1721413350047,
"link": null,
"locked": false,
"fontSize": 20,
"fontFamily": 1,
"text": "Foundation",
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "Foundation",
"autoResize": true,
"lineHeight": 1.25
},
{
"type": "arrow",
"version": 89,
"versionNonce": 134968424,
"index": "aD",
"isDeleted": false,
"id": "ESLop_uz8Ftwlk5vJVswA",
"fillStyle": "solid",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 2048.381732785466,
"y": 2392.010321960983,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"width": 129.60112366654357,
"height": 0.614872760441358,
"seed": 337878888,
"groupIds": [],
"frameId": null,
"roundness": {
"type": 2
},
"boundElements": [],
"updated": 1715866448443,
"link": null,
"locked": false,
"startBinding": {
"elementId": "wL8NJ3dLQyvU9N0yxoFzy",
"focus": 0.01571451742803571,
"gap": 1.6865081429249358
},
"endBinding": null,
"lastCommittedPoint": null,
"startArrowhead": null,
"endArrowhead": "arrow",
"points": [
[
0,
0
],
[
129.60112366654357,
-0.614872760441358
]
]
},
{
"type": "rectangle",
"version": 264,
"versionNonce": 441719832,
"index": "aE",
"isDeleted": false,
"id": "ddPHrPCjUk2SSKGd6uY7H",
"fillStyle": "cross-hatch",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 2181.141545661363,
"y": 2334.560124783961,
"strokeColor": "#1e1e1e",
"backgroundColor": "#ffc9c9",
"width": 297.5246313224311,
"height": 113.37199634951857,
"seed": 925921640,
"groupIds": [],
"frameId": null,
"roundness": {
"type": 3
},
"boundElements": [
{
"id": "wZIz53xXqv5dtoLed5D49",
"type": "arrow"
},
{
"id": "HAQTKTmXJeFwOUw6P1o_g",
"type": "arrow"
}
],
"updated": 1715879375727,
"link": null,
"locked": false
},
{
"type": "text",
"version": 146,
"versionNonce": 318730791,
"index": "aF",
"isDeleted": false,
"id": "CtyHy_SwfDZ8h2x3JLjpY",
"fillStyle": "cross-hatch",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 2223.107489951153,
"y": 2364.502671438146,
"strokeColor": "#1e1e1e",
"backgroundColor": "transparent",
"width": 219.41981506347656,
"height": 50,
"seed": 1967631208,
"groupIds": [],
"frameId": null,
"roundness": null,
"boundElements": [],
"updated": 1721413350047,
"link": null,
"locked": false,
"fontSize": 20,
"fontFamily": 1,
"text": "Why Blockchains?\nWhat do they provide?",
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "Why Blockchains?\nWhat do they provide?",
"autoResize": true,
"lineHeight": 1.25
},
{
"type": "arrow",
"version": 74,
"versionNonce": 1153690984,
"index": "aJ",
"isDeleted": false,
"id": "wZIz53xXqv5dtoLed5D49",
"fillStyle": "cross-hatch",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 2321.557002120883,
"y": 2448.9321211334795,
"strokeColor": "#1e1e1e",
"backgroundColor": "#a5d8ff",
"width": 4.35387512420175,
"height": 81.70425497315046,
"seed": 527221608,
"groupIds": [],
"frameId": null,
"roundness": {
"type": 2
},
"boundElements": [],
"updated": 1715878457255,
"link": null,
"locked": false,
"startBinding": {
"elementId": "ddPHrPCjUk2SSKGd6uY7H",
"focus": 0.07551274522807777,
"gap": 1
},
"endBinding": null,
"lastCommittedPoint": null,
"startArrowhead": null,
"endArrowhead": "arrow",
"points": [
[
0,
0
],
[
4.35387512420175,
81.70425497315046
]
]
},
{
"type": "rectangle",
"version": 323,
"versionNonce": 1089967896,
"index": "aK",
"isDeleted": false,
"id": "rvpAzrfQA0EAO5niTP7RA",
"fillStyle": "cross-hatch",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 2067.1012291814855,
"y": 2533.4633248502882,
"strokeColor": "#1e1e1e",
"backgroundColor": "#a5d8ff",
"width": 531.876879070111,
"height": 156.20158277307794,
"seed": 549100056,
"groupIds": [],
"frameId": null,
"roundness": {
"type": 3
},
"boundElements": [
{
"id": "k6FE27oBZpkDAJlHVRI96",
"type": "arrow"
}
],
"updated": 1715878925482,
"link": null,
"locked": false
},
{
"type": "text",
"version": 77,
"versionNonce": 881158089,
"index": "aL",
"isDeleted": false,
"id": "_oMOFyFGQbRvzA4rxbcRo",
"fillStyle": "cross-hatch",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 2076.4682960138925,
"y": 2563.2333456762817,
"strokeColor": "#1e1e1e",
"backgroundColor": "#a5d8ff",
"width": 515.7395629882812,
"height": 100,
"seed": 2043724136,
"groupIds": [],
"frameId": null,
"roundness": null,
"boundElements": [],
"updated": 1721413350047,
"link": null,
"locked": false,
"fontSize": 20,
"fontFamily": 1,
"text": "Blockchain is an open ledger that several parties\n can access at once. One of its primary benefits\n is that the recorded information is hard to change\n without an agreement from all parties involved.",
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "Blockchain is an open ledger that several parties\n can access at once. One of its primary benefits\n is that the recorded information is hard to change\n without an agreement from all parties involved.",
"autoResize": true,
"lineHeight": 1.25
},
{
"type": "rectangle",
"version": 720,
"versionNonce": 228503832,
"index": "aM",
"isDeleted": false,
"id": "YhDhA-lFF6GP3HsvMlCNv",
"fillStyle": "hachure",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 1855.3007423921035,
"y": 2764.792953373361,
"strokeColor": "#1971c2",
"backgroundColor": "#a5d8ff",
"width": 954.243776296254,
"height": 1007.9057182749385,
"seed": 48017000,
"groupIds": [],
"frameId": null,
"roundness": {
"type": 3
},
"boundElements": [
{
"id": "k6FE27oBZpkDAJlHVRI96",
"type": "arrow"
}
],
"updated": 1715878925482,
"link": null,
"locked": false
},
{
"type": "text",
"version": 651,
"versionNonce": 1320981831,
"index": "aO",
"isDeleted": false,
"id": "8lwwYPLhzYc8kUszdH_uB",
"fillStyle": "hachure",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 1878.1772342339027,
"y": 2798.153801748017,
"strokeColor": "#1e1e1e",
"backgroundColor": "#a5d8ff",
"width": 913.9966116362637,
"height": 958.4207223187677,
"seed": 1043851800,
"groupIds": [],
"frameId": null,
"roundness": null,
"boundElements": [],
"updated": 1721413350047,
"link": null,
"locked": false,
"fontSize": 19.659912252692664,
"fontFamily": 1,
"text": "Primary Reason why blockchains are valued:\n\n1. Decentralization: Traditional databases are usually centralized, meaning they are managed\nby a single entity. Blockchains, on the other hand, are decentralized, meaning no single entity \nhas control over the entire network. This decentralization enhances security and trust, as \nthe network's integrity doesn't rely on a single point of failure.\n\n2. Transparency: All transactions on a blockchain are recorded on a public ledger that is \naccessible to all participants. This transparency ensures that all parties can verify \ntransactions independently, reducing the need for intermediaries and increasing trust among \nparticipants.\n\n3. Security: Blockchains use cryptographic techniques to secure data. Once a transaction is \nrecorded on a blockchain, it is extremely difficult to alter it. This immutability helps protect \nagainst fraud and tampering, ensuring the integrity of the data.\n\n4. Efficiency and Speed: Traditional financial transactions can be slow and cumbersome, often\nrequiring several days to settle. Blockchain technology can streamline these processes, \nenabling faster transactions and reducing the need for intermediaries, such as banks or \nclearinghouses.\n\n5. Cost Reduction: By eliminating intermediaries and automating processes, blockchains can \nreduce the costs associated with transactions and record-keeping. This can lead to \nsignificant savings for businesses and consumers.\n\n6. Smart Contracts: Blockchains support the use of smart contracts, which are self-\nexecuting contracts with the terms of the agreement directly written into code. Smart \ncontracts can automate complex processes and reduce the need for manual intervention, \nincreasing efficiency and reducing the potential for errors.\n\n7. Traceability: Blockchains provide a complete and immutable record of transactions, which \ncan be invaluable for tracing the provenance of goods in supply chains, verifying the \nauthenticity of products, and ensuring compliance with regulations.\n\n8. Inclusivity: Blockchain technology can provide financial services to unbanked and \nunderbanked populations, offering a way to participate in the global economy without relying \non traditional banking infrastructure.\n\n",
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "Primary Reason why blockchains are valued:\n\n1. Decentralization: Traditional databases are usually centralized, meaning they are managed by a single entity. Blockchains, on the other hand, are decentralized, meaning no single entity has control over the entire network. This decentralization enhances security and trust, as the network's integrity doesn't rely on a single point of failure.\n\n2. Transparency: All transactions on a blockchain are recorded on a public ledger that is accessible to all participants. This transparency ensures that all parties can verify transactions independently, reducing the need for intermediaries and increasing trust among participants.\n\n3. Security: Blockchains use cryptographic techniques to secure data. Once a transaction is recorded on a blockchain, it is extremely difficult to alter it. This immutability helps protect against fraud and tampering, ensuring the integrity of the data.\n\n4. Efficiency and Speed: Traditional financial transactions can be slow and cumbersome, often requiring several days to settle. Blockchain technology can streamline these processes, enabling faster transactions and reducing the need for intermediaries, such as banks or clearinghouses.\n\n5. Cost Reduction: By eliminating intermediaries and automating processes, blockchains can reduce the costs associated with transactions and record-keeping. This can lead to significant savings for businesses and consumers.\n\n6. Smart Contracts: Blockchains support the use of smart contracts, which are self-executing contracts with the terms of the agreement directly written into code. Smart contracts can automate complex processes and reduce the need for manual intervention, increasing efficiency and reducing the potential for errors.\n\n7. Traceability: Blockchains provide a complete and immutable record of transactions, which can be invaluable for tracing the provenance of goods in supply chains, verifying the authenticity of products, and ensuring compliance with regulations.\n\n8. Inclusivity: Blockchain technology can provide financial services to unbanked and underbanked populations, offering a way to participate in the global economy without relying on traditional banking infrastructure.\n\n",
"autoResize": false,
"lineHeight": 1.25
},
{
"type": "arrow",
"version": 55,
"versionNonce": 287634456,
"index": "aP",
"isDeleted": false,
"id": "k6FE27oBZpkDAJlHVRI96",
"fillStyle": "hachure",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 2332.787656770961,
"y": 2689.6704291590663,
"strokeColor": "#1e1e1e",
"backgroundColor": "#a5d8ff",
"width": 3.0335197818922097,
"height": 76.26885916123638,
"seed": 12842520,
"groupIds": [],
"frameId": null,
"roundness": {
"type": 2
},
"boundElements": [],
"updated": 1715878925482,
"link": null,
"locked": false,
"startBinding": {
"elementId": "rvpAzrfQA0EAO5niTP7RA",
"focus": 0.012483476295321788,
"gap": 1
},
"endBinding": {
"elementId": "YhDhA-lFF6GP3HsvMlCNv",
"focus": 0.047061104836443435,
"gap": 1
},
"lastCommittedPoint": null,
"startArrowhead": null,
"endArrowhead": "arrow",
"points": [
[
0,
0
],
[
3.0335197818922097,
76.26885916123638
]
]
},
{
"type": "rectangle",
"version": 305,
"versionNonce": 2053690904,
"index": "aQ",
"isDeleted": false,
"id": "v1rIBRzk7sqq-eVFyeaOZ",
"fillStyle": "cross-hatch",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 2967.8131559517974,
"y": 2323.8330368705138,
"strokeColor": "#1e1e1e",
"backgroundColor": "#ffc9c9",
"width": 410.3777965538625,
"height": 125.90793159105078,
"seed": 1204293992,
"groupIds": [],
"frameId": null,
"roundness": {
"type": 3
},
"boundElements": [
{
"id": "HAQTKTmXJeFwOUw6P1o_g",
"type": "arrow"
},
{
"id": "nSsAGSDq0TGztcTdzhS-x",
"type": "arrow"
},
{
"id": "sM98UWSOD2VXcFfpMdkCm",
"type": "arrow"
}
],
"updated": 1715963455985,
"link": null,
"locked": false
},
{
"type": "text",
"version": 111,
"versionNonce": 2029487785,
"index": "aR",
"isDeleted": false,
"id": "ko6zWf67w9encf8Fzjg7X",
"fillStyle": "cross-hatch",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 3043.060374851361,
"y": 2373.611287773152,
"strokeColor": "#1e1e1e",
"backgroundColor": "#ffc9c9",
"width": 250.39979553222656,
"height": 25,
"seed": 1681408024,
"groupIds": [],
"frameId": null,
"roundness": null,
"boundElements": [],
"updated": 1721413350047,
"link": null,
"locked": false,
"fontSize": 20,
"fontFamily": 1,
"text": "What is decentralization?",
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "What is decentralization?",
"autoResize": true,
"lineHeight": 1.25
},
{
"type": "arrow",
"version": 69,
"versionNonce": 1341383704,
"index": "aS",
"isDeleted": false,
"id": "HAQTKTmXJeFwOUw6P1o_g",
"fillStyle": "cross-hatch",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 2481.281831664627,
"y": 2384.940360193516,
"strokeColor": "#1e1e1e",
"backgroundColor": "#ffc9c9",
"width": 485.53132428717026,
"height": 1.8782354526283598,
"seed": 1247837976,
"groupIds": [],
"frameId": null,
"roundness": {
"type": 2
},
"boundElements": [],
"updated": 1715879988279,
"link": null,
"locked": false,
"startBinding": {
"elementId": "ddPHrPCjUk2SSKGd6uY7H",
"focus": -0.12147394054198747,
"gap": 2.6156546808331314
},
"endBinding": {
"elementId": "v1rIBRzk7sqq-eVFyeaOZ",
"focus": -0.013007785704879614,
"gap": 1
},
"lastCommittedPoint": null,
"startArrowhead": null,
"endArrowhead": "arrow",
"points": [
[
0,
0
],
[
485.53132428717026,
1.8782354526283598
]
]
},
{
"type": "text",
"version": 832,
"versionNonce": 1495815271,
"index": "aU",
"isDeleted": false,
"id": "hatbG83_66p4kjzCqv0Yh",
"fillStyle": "cross-hatch",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 2982.094721308022,
"y": 2562.555458182024,
"strokeColor": "#1e1e1e",
"backgroundColor": "#a5d8ff",
"width": 874.7632635293261,
"height": 1525,
"seed": 230140520,
"groupIds": [],
"frameId": null,
"roundness": null,
"boundElements": [],
"updated": 1721413350047,
"link": null,
"locked": false,
"fontSize": 20,
"fontFamily": 1,
"text": "Decentralization refers to the distribution of power, control, and decision-making from a\ncentral authority to a network of nodes or participants. In the context of technology \nand particularly blockchain, decentralization has several important implications:\n\n1. Distributed Control: Unlike centralized systems, where a single entity or a small group\nof entities have control over the entire network, decentralized systems distribute \ncontrol among all participants. This means that no single participant has the authority\nto make unilateral decisions, reducing the risk of abuse of power.\n\n2. Increased Security: Decentralized systems are generally more secure because they \nlack a single point of failure. In a centralized system, if the central authority is \ncompromised, the entire system is at risk. In a decentralized system, even if one node \nis compromised, the rest of the network remains secure.\n\n3. Trustless Environment: In decentralized networks, participants do not need to trust\na central authority or each other. Instead, they rely on the underlying protocol and \nconsensus mechanisms to verify transactions and maintain the integrity of the network. \nThis trustless nature reduces the need for intermediaries and can lead to more \nefficient processes.\n\n4. Censorship Resistance: Decentralized systems are more resistant to censorship \nbecause there is no central point that can be targeted for control or shutdown. This \nmakes it difficult for any single entity to manipulate or restrict access to the \nnetwork.\n\n5. Transparency and Accountability: Decentralized systems often operate on public \nledgers, where all transactions are visible to all participants. This transparency \nensures that actions are accountable and can be independently verified, reducing the \nrisk of fraud and corruption.\n\n6. Resilience and Fault Tolerance: Decentralized networks are typically more resilient \nto failures. Since data and operations are spread across multiple nodes, the system \ncan continue to function even if some nodes fail or are taken offline.\n\nExamples of Decentralization:\n• Blockchain Technology: In a blockchain, transactions are verified and recorded by a \nnetwork of nodes rather than a central authority. Bitcoin and Ethereum are prominent \nexamples of decentralized cryptocurrencies.\n\n• Decentralized Finance (DeFi): DeFi platforms aim to recreate traditional financial \nsystems, such as lending and trading, on decentralized networks, reducing the reliance \non banks and other financial institutions.\n\n• Decentralized Autonomous Organizations (DAOs): DAOs are organizations governed by\nsmart contracts and decentralized decision-making processes, where stakeholders vote \non proposals and decisions are executed automatically.\n\nBenefits:\n• Reduced risk of centralized failures and attacks.\n• Increased transparency and accountability.\n• Greater inclusivity and access to services.\n\nChallenges:\n• Scalability issues, as decentralized networks can be slower and less efficient than \ncentralized ones.\n• Complexity in governance and decision-making.\n• Regulatory and legal uncertainties.\n\nDecentralization represents a shift towards more open, secure, and resilient systems, \nwith the potential to transform various industries by reducing reliance on central \nauthorities and intermediaries.",
"textAlign": "left",
"verticalAlign": "top",
"containerId": null,
"originalText": "Decentralization refers to the distribution of power, control, and decision-making from a central authority to a network of nodes or participants. In the context of technology and particularly blockchain, decentralization has several important implications:\n\n1. Distributed Control: Unlike centralized systems, where a single entity or a small group of entities have control over the entire network, decentralized systems distribute control among all participants. This means that no single participant has the authority to make unilateral decisions, reducing the risk of abuse of power.\n\n2. Increased Security: Decentralized systems are generally more secure because they lack a single point of failure. In a centralized system, if the central authority is compromised, the entire system is at risk. In a decentralized system, even if one node is compromised, the rest of the network remains secure.\n\n3. Trustless Environment: In decentralized networks, participants do not need to trust a central authority or each other. Instead, they rely on the underlying protocol and consensus mechanisms to verify transactions and maintain the integrity of the network. This trustless nature reduces the need for intermediaries and can lead to more efficient processes.\n\n4. Censorship Resistance: Decentralized systems are more resistant to censorship because there is no central point that can be targeted for control or shutdown. This makes it difficult for any single entity to manipulate or restrict access to the network.\n\n5. Transparency and Accountability: Decentralized systems often operate on public ledgers, where all transactions are visible to all participants. This transparency ensures that actions are accountable and can be independently verified, reducing the risk of fraud and corruption.\n\n6. Resilience and Fault Tolerance: Decentralized networks are typically more resilient to failures. Since data and operations are spread across multiple nodes, the system can continue to function even if some nodes fail or are taken offline.\n\nExamples of Decentralization:\n• Blockchain Technology: In a blockchain, transactions are verified and recorded by a network of nodes rather than a central authority. Bitcoin and Ethereum are prominent examples of decentralized cryptocurrencies.\n\n• Decentralized Finance (DeFi): DeFi platforms aim to recreate traditional financial systems, such as lending and trading, on decentralized networks, reducing the reliance on banks and other financial institutions.\n\n• Decentralized Autonomous Organizations (DAOs): DAOs are organizations governed by smart contracts and decentralized decision-making processes, where stakeholders vote on proposals and decisions are executed automatically.\n\nBenefits:\n• Reduced risk of centralized failures and attacks.\n• Increased transparency and accountability.\n• Greater inclusivity and access to services.\n\nChallenges:\n• Scalability issues, as decentralized networks can be slower and less efficient than centralized ones.\n• Complexity in governance and decision-making.\n• Regulatory and legal uncertainties.\n\nDecentralization represents a shift towards more open, secure, and resilient systems, with the potential to transform various industries by reducing reliance on central authorities and intermediaries.",
"autoResize": false,
"lineHeight": 1.25
},
{
"type": "arrow",
"version": 209,
"versionNonce": 1504427544,
"index": "aV",
"isDeleted": false,
"id": "nSsAGSDq0TGztcTdzhS-x",
"fillStyle": "cross-hatch",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 3381.6143106248555,
"y": 2383.4248082381528,
"strokeColor": "#1e1e1e",
"backgroundColor": "#a5d8ff",
"width": 108.9445388677068,
"height": 128.85442442676913,
"seed": 382496104,
"groupIds": [],
"frameId": null,
"roundness": {
"type": 2
},
"boundElements": [],
"updated": 1715879988280,
"link": null,
"locked": false,
"startBinding": {
"elementId": "v1rIBRzk7sqq-eVFyeaOZ",
"focus": -0.4020915790593501,
"gap": 3.423358119195882
},
"endBinding": {
"elementId": "TgVzmK1oQTC3bf6DrKGPl",
"focus": 0.19552533296180583,
"gap": 4.027172318808425
},
"lastCommittedPoint": null,
"startArrowhead": null,
"endArrowhead": "arrow",
"points": [
[
0,
0
],
[
102.6916341514293,
17.875148104454183
],
[
108.9445388677068,
128.85442442676913
]
]
},
{
"type": "rectangle",
"version": 437,
"versionNonce": 444851077,
"index": "aW",
"isDeleted": false,
"id": "2XDNpVkqj2itiNjQfpXJI",
"fillStyle": "cross-hatch",
"strokeWidth": 2,
"strokeStyle": "solid",
"roughness": 1,
"opacity": 100,
"angle": 0,
"x": 4151.762527385971,
"y": 2320.803496863184,
"strokeColor": "#1e1e1e",
"backgroundColor": "#ffc9c9",
"width": 410.3777965538625,
"height": 125.90793159105078,
"seed": 1557796200,
"groupIds": [],
"frameId": null,
"roundness": {
"type": 3
},
"boundElements": [
{
"id": "sM98UWSOD2VXcFfpMdkCm",
"type": "arrow"
},
{
"id": "EBm5DHwc9yGFsactPWOsf",
"type": "arrow"
},
{
"id": "MfZvq7pQC-XIwhJWAoTkI",