forked from FrancescoXX/free-Web3-resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FREE Web3 Resources (2).html
1268 lines (1210 loc) · 87.3 KB
/
FREE Web3 Resources (2).html
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
<!DOCTYPE html>
<!-- saved from url=(0052)https://francescoxx.github.io/free-Web3-resources/#/ -->
<html lang="en" data-lt-installed="true">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="Free resources to learn Web3">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<!---------- Facebook Open Graph Tags ---------->
<meta property="og:title" content="Free resources to learn Web3" />
<meta property="og:description" content="This is a list of Free Web3 Resources links to learn Blockchain development." />
<meta property=”og:type” content=”website” />
<meta property="og:url" content="https://francescoxx.github.io/free-Web3-resources" />
<meta property="og:image" content="./assets/fb-twitter-banner.png" />
<!----------- Twitter Open Graph Tags ------------>
<meta name="twitter:title" content="Free resources to learn Web3" />
<meta name="twitter:description" content="This is a list of Free Web3 Resources links to learn Blockchain development."/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:url" content="https://francescoxx.github.io/free-Web3-resources" />
<meta name="twitter:image" content="./assets/fb-twitter-banner.png" />
<title>FREE Web3 Resources</title>z
<link rel="icon" type="image/x-icon" href="https://francescoxx.github.io/images/favicon_io/favicon.ico">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="vue.css">
<style>
.sidebar {
padding-top: 0;
}
.search {
margin-bottom: 20px;
padding: 6px;
border-bottom: 1px solid #eee;
}
.search .input-wrap {
display: flex;
align-items: center;
}
.search .results-panel {
display: none;
}
.search .results-panel.show {
display: block;
}
.search input {
outline: none;
border: none;
width: 100%;
padding: 0 7px;
line-height: 36px;
font-size: 14px;
border: 1px solid transparent;
}
.search input:focus {
box-shadow: 0 0 5px var(--theme-color, #FFFFFF);
border: 1px solid var(--theme-color, #FFFFFF);
}
.search input::-webkit-search-decoration,
.search input::-webkit-search-cancel-button,
.search input {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.search .clear-button {
cursor: pointer;
width: 36px;
text-align: right;
display: none;
}
.search .clear-button.show {
display: block;
}
.search .clear-button svg {
transform: scale(.5);
}
.search h2 {
font-size: 17px;
margin: 10px 0;
}
.search a {
text-decoration: none;
color: inherit;
}
.search .matching-post {
border-bottom: 1px solid #eee;
}
.search .matching-post:last-child {
border-bottom: 0;
}
.search p {
font-size: 14px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.search p.empty {
text-align: center;
}
.app-name.hide,
.sidebar-nav.hide {
display: none;
}
.checkbox {
opacity: 0;
position: absolute;
}
.checkbox-label {
background-color: #111;
width: 50px;
height: 26px;
border-radius: 50px;
position: relative;
padding: 5px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
}
.fa-moon {color: #f1c40f;}
.fa-sun {color: #f39c12;}
.checkbox-label .ball {
background-color: #fff;
width: 22px;
height: 22px;
position: absolute;
left: 2px;
top: 2px;
border-radius: 50%;
transition: transform 0.2s linear;
}
.checkbox:checked + .checkbox-label .ball {
transform: translateX(24px);
}
/* light theme colors */
html{
--bg: #FCFCFC;
--bg-panel: #EEEEEE;/*box container*/
--color-headings: #00ADB5;/*heading*/
--color-text: #393e46;/*paragraph*/
height:100%;
display:grid;
align-items:center;
justify-content:center;
margin: 0;
padding: 0;
}
/* dark theme colors */
html[data-theme='dark']{
--bg: #232931;
--bg-panel: #393E46;
--color-headings: #00ADB5;
--color-text: #B5B5B5;
}
body{
font-family: 'Montserrat', sans-serif;
background-color: var(--bg);
}
.li{
padding-top: 10px;
}
html::-webkit-scrollbar {
display: none;
}
.search::-webkit-scrollbar {
display: none;
}
.content::-webkit-scrollbar {
display: none;
}
</style>
<style data-cursor="cursor"></style>
</head>
<body data-page="README.md" class="ready sticky" data-new-gr-c-s-check-loaded="14.1080.0" data-gr-ext-installed="" style="overflow: hidden;">
<main style="overflow: hidden;"><button class="sidebar-toggle" aria-label="Menu">
<div class="sidebar-toggle-button"><span></span><span></span><span></span></div>
</button>
<!-- <aside class="sidebar">
<div class="search">
<div class="input-wrap">
<input type="search" value="" aria-label="Search text" placeholder="Search">
<div class="clear-button">
<svg width="26" height="24">
<circle cx="12" cy="12" r="11" fill="#ccc"></circle>
<path stroke="white" stroke-width="2" d="M8.25,8.25,15.75,15.75"></path>
<path stroke="white" stroke-width="2" d="M8.25,15.75,15.75,8.25"></path>
</svg>
</div>
</div>
<div class="results-panel"></div>
</div>
<h1 class="app-name"><a class="app-name-link" data-nosearch=""
href="https://francescoxx.github.io/free-Web3-resources/">Web3 Resources</a></h1>
<div class="sidebar-nav">
<ul>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=free-web3-resources-%f0%9f%9a%80"
title="Free Web3 Resources 🚀" cursorshover="true">Free Web3 Resources 🚀</a></li>
<ul>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=start-here-%f0%9f%91%87"
title="Start here 👇" cursorshover="true">Start here 👇</a></li>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=getting-involved"
title="Getting Involved" cursorshover="true">Getting Involved</a></li>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=web3-roadmaps-article-blog"
title="Web3 Roadmaps (Article / Blog)" cursorshover="true">Web3 Roadmaps (Article / Blog)</a>
</li>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=web3-roadmaps-video"
title="Web3 Roadmaps (Video)" cursorshover="true">Web3 Roadmaps (Video)</a></li>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=ethereum-development-tools-%f0%9f%9b%a0%ef%b8%8f"
title="Ethereum Development Tools 🛠️" cursorshover="true">Ethereum Development Tools 🛠️</a>
</li>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=%f0%9f%92%a1-ethereum-free-resources"
title="💡 Ethereum free resources">💡 Ethereum free resources</a></li>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=ethereum-languages"
title="Ethereum Languages">Ethereum Languages</a></li>
<li><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=solidity"
title="Solidity">Solidity</a></li>
<li><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=vyper"
title="Vyper">Vyper</a></li>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=%f0%9f%91%a8%f0%9f%92%bc-ethereum-clients"
title="👨💼 Ethereum Clients">👨💼 Ethereum Clients</a></li>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=%f0%9f%8c%90-ethereum-in-different-languages"
title="🌐 Ethereum in different languages">🌐 Ethereum in different languages</a></li>
<ul>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=portuguese"
title="Portuguese">Portuguese</a></li>
<li><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=chinese"
title="Chinese">Chinese</a></li>
<li><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=french"
title="French">French</a></li>
<li><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=german"
title="German">German</a></li>
<li><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=hindi"
title="Hindi">Hindi</a></li>
<li><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=italian"
title="Italian">Italian</a></li>
<li><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=spanish"
title="Spanish">Spanish</a></li>
<li><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=turkish"
title="Turkish">Turkish</a></li>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=vietnamese"
title="Vietnamese">Vietnamese</a></li>
</ul>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=dao-communities"
title="DAO Communities">DAO Communities</a></li>
<li><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=sdks"
title="SDKs">SDKs</a></li>
<li><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=oracles"
title="Oracles">Oracles</a></li>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=off-chain-data-protocols"
title="Off Chain Data Protocols">Off Chain Data Protocols</a></li>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=nft-marketplaces"
title="NFT Marketplaces">NFT Marketplaces</a></li>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=node-providers"
title="Node Providers">Node Providers</a></li>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=%f0%9f%93%82-file-storage"
title="📂 File Storage">📂 File Storage</a></li>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=ethereum-development-environment"
title="Ethereum Development Environment">Ethereum Development Environment</a></li>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=ethereum-development-ides"
title="Ethereum Development IDEs">Ethereum Development IDEs</a></li>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=%f0%9f%8e%ad-identity"
title="🎭 Identity">🎭 Identity</a></li>
<li><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=indexing"
title="Indexing">Indexing</a></li>
<li><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=client-sdks"
title="Client SDKs">Client SDKs</a></li>
<li><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=blockchains"
title="Blockchains">Blockchains</a></li>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=%f0%9f%91%a8%f0%9f%92%bb-learning-platforms"
title="👨💻 Learning Platforms">👨💻 Learning Platforms</a></li>
<li><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=solana"
title="Solana">Solana</a></li>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=%f0%9f%91%a8%f0%9f%92%bb-open-source-projects-you-can-contribute-to"
title="👨💻 Open Source Projects you can contribute to">👨💻 Open Source Projects you can
contribute to</a></li>
<li><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=youtube-channels"
title="Youtube Channels">Youtube Channels</a></li>
</ul>
<li><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=tutorials"
title="Tutorials">Tutorials</a></li>
<li><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=tutorials-1"
title="Tutorials">Tutorials</a></li>
</ul>
</div>
</aside> -->
<div class="container" style="max-width:100%">
<div class="row">
<div class="col-sm-3" style="box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;">
<br>
<div class="search" style="max-height: 1080px;overflow-y: scroll;">
<div class="input-wrap">
<input type="search" value="" aria-label="Search text" placeholder="Search">
<div class="clear-button">
<svg width="26" height="24">
<circle cx="12" cy="12" r="11" fill="#ccc"></circle>
<path stroke="white" stroke-width="2" d="M8.25,8.25,15.75,15.75"></path>
<path stroke="white" stroke-width="2" d="M8.25,15.75,15.75,8.25"></path>
</svg>
</div>
</div>
<br>
<div class="results-panel"></div>
<h1 class="app-name"><a class="app-name-link" data-nosearch=""
href="https://francescoxx.github.io/free-Web3-resources/">Web3 Resources</a></h1>
<ul>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=free-web3-resources-%f0%9f%9a%80"
title="Free Web3 Resources 🚀" cursorshover="true">Free Web3 Resources 🚀</a></li>
<ul>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=start-here-%f0%9f%91%87"
title="Start here 👇" cursorshover="true">Start here 👇</a></li>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=getting-involved"
title="Getting Involved" cursorshover="true">Getting Involved</a></li>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=web3-roadmaps-article-blog"
title="Web3 Roadmaps (Article / Blog)" cursorshover="true">Web3 Roadmaps (Article / Blog)</a>
</li>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=web3-roadmaps-video"
title="Web3 Roadmaps (Video)" cursorshover="true">Web3 Roadmaps (Video)</a></li>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=ethereum-development-tools-%f0%9f%9b%a0%ef%b8%8f"
title="Ethereum Development Tools 🛠️" cursorshover="true">Ethereum Development Tools 🛠️</a>
</li>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=%f0%9f%92%a1-ethereum-free-resources"
title="💡 Ethereum free resources">💡 Ethereum free resources</a></li>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=ethereum-languages"
title="Ethereum Languages">Ethereum Languages</a></li>
<li class="li"><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=solidity"
title="Solidity">Solidity</a></li>
<li class="li"><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=vyper"
title="Vyper">Vyper</a></li>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=%f0%9f%91%a8%f0%9f%92%bc-ethereum-clients"
title="👨💼 Ethereum Clients">👨💼 Ethereum Clients</a></li>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=%f0%9f%8c%90-ethereum-in-different-languages"
title="🌐 Ethereum in different languages">🌐 Ethereum in different languages</a></li>
<ul>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=portuguese"
title="Portuguese">Portuguese</a></li>
<li class="li"><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=chinese"
title="Chinese">Chinese</a></li>
<li class="li"><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=french"
title="French">French</a></li>
<li class="li"><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=german"
title="German">German</a></li>
<li class="li"><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=hindi"
title="Hindi">Hindi</a></li>
<li class="li"><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=italian"
title="Italian">Italian</a></li>
<li class="li"><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=spanish"
title="Spanish">Spanish</a></li>
<li class="li"><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=turkish"
title="Turkish">Turkish</a></li>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=vietnamese"
title="Vietnamese">Vietnamese</a></li>
</ul>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=dao-communities"
title="DAO Communities">DAO Communities</a></li>
<li class="li"><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=sdks"
title="SDKs">SDKs</a></li>
<li class="li"><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=oracles"
title="Oracles">Oracles</a></li>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=off-chain-data-protocols"
title="Off Chain Data Protocols">Off Chain Data Protocols</a></li>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=nft-marketplaces"
title="NFT Marketplaces">NFT Marketplaces</a></li>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=node-providers"
title="Node Providers">Node Providers</a></li>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=%f0%9f%93%82-file-storage"
title="📂 File Storage">📂 File Storage</a></li>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=ethereum-development-environment"
title="Ethereum Development Environment">Ethereum Development Environment</a></li>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=ethereum-development-ides"
title="Ethereum Development IDEs">Ethereum Development IDEs</a></li>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=%f0%9f%8e%ad-identity"
title="🎭 Identity">🎭 Identity</a></li>
<li class="li"><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=indexing"
title="Indexing">Indexing</a></li>
<li class="li"><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=client-sdks"
title="Client SDKs">Client SDKs</a></li>
<li class="li"><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=blockchains"
title="Blockchains">Blockchains</a></li>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=%f0%9f%91%a8%f0%9f%92%bb-learning-platforms"
title="👨💻 Learning Platforms">👨💻 Learning Platforms</a></li>
<li class="li"><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=solana"
title="Solana">Solana</a></li>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=%f0%9f%91%a8%f0%9f%92%bb-open-source-projects-you-can-contribute-to"
title="👨💻 Open Source Projects you can contribute to">👨💻 Open Source Projects you can
contribute to</a></li>
<li class="li"><a class="section-link"
href="https://francescoxx.github.io/free-Web3-resources/#/?id=youtube-channels"
title="Youtube Channels">Youtube Channels</a></li>
</ul>
<li class="li"><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=tutorials"
title="Tutorials">Tutorials</a></li>
<li class="li"><a class="section-link" href="https://francescoxx.github.io/free-Web3-resources/#/?id=tutorials-1"
title="Tutorials">Tutorials</a></li>
</ul>
</div>
</div>
<div class="col-sm-9" >
<section class="content" style="max-height: 1080px;overflow-y: scroll;">
<form>
<div align="right" style="margin-top: -45px;margin-right: 2rem;">
<input type="checkbox" name="checkbox" class="checkbox" id="checkbox" onclick="toggle(this.form)">
<label for="checkbox" class="checkbox-label">
<i class="fas fa-moon"></i>
<i class="fas fa-sun"></i>
<span class="ball"></span>
</label>
</div>
</form>
<script>
window.onload=function(){
var theme = localStorage.getItem('data-theme');
if(theme=='light'){
document.documentElement.setAttribute('data-theme', 'light');
}else if(theme==''){
document.documentElement.setAttribute('data-theme', 'light');
}else if(theme=='dark'){
document.documentElement.setAttribute('data-theme' , 'dark');
document.getElementById("checkbox").checked = true;
}
}
function toggle(a){
if(a.checkbox.checked==true){
document.documentElement.classList.add('transition');
document.documentElement.setAttribute('data-theme', 'dark');
localStorage.setItem('data-theme','dark');
}
else if(a.checkbox.checked==false){
document.documentElement.classList.add('transition');
document.documentElement.setAttribute('data-theme', 'light');
localStorage.setItem('data-theme','light');
}
};
</script>
<article class="markdown-section" id="main">
<h1 id="free-web3-resources-🚀"><a
href="https://francescoxx.github.io/free-Web3-resources/#/?id=free-web3-resources-%f0%9f%9a%80"
data-id="free-web3-resources-🚀" class="anchor"><span>Free Web3 Resources 🚀</span></a></h1>
<p>This is a list of Free Web3 Resources links to learn Blockchain development.</p>
<h2 id="start-here-👇"><a
href="https://francescoxx.github.io/free-Web3-resources/#/?id=start-here-%f0%9f%91%87"
data-id="start-here-👇" class="anchor"><span>Start here 👇</span></a></h2>
<p>🏁 Join the Community: <a href="https://discord.com/invite/cRjhjFRRre" target="_blank"
rel="noopener">free web3 project on 4C</a></p>
<p>📝 All Francescos' Twitter posts <a
href="https://github.com/FrancescoXX/free-Web3-resources/blob/main/twitter-posts.md" target="_blank"
rel="noopener">here</a></p>
<p><img src="./FREE Web3 Resources_files/162364470-56cc28da-d50c-426f-82a4-7ea06234d4bf.png"
data-origin="https://user-images.githubusercontent.com/18360871/162364470-56cc28da-d50c-426f-82a4-7ea06234d4bf.png"
alt="WEB3 FREE RESOURCES"></p>
<h2 id="getting-involved"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=getting-involved"
data-id="getting-involved" class="anchor"><span>Getting Involved</span></a></h2>
<ul>
<li><a href="https://medium.com/certik/the-blockchain-trilemma-decentralized-scalable-and-secure-e9d8c41a87b3"
target="_blank" rel="noopener">Blockchain Trilemma</a> An article about the Blockchain Trilemma.
</li>
<li><a href="https://vitalik.ca/general/2021/12/06/endgame.html" target="_blank"
rel="noopener">Endgame</a> An Article by Vitalik Buterin to have an idea of the direction Ethereum
is taking.</li>
<li><a href="https://ethereum.org/en/whitepaper/" target="_blank" rel="noopener">Ethereum Whitepaper</a>
Introductory paper published in 2014 by Vitalik Buterin, Ethereum's founder, before the launch in
2015.</li>
<li><a href="https://ethereum.github.io/yellowpaper/paper.pdf" target="_blank" rel="noopener">Ethereum
Yellowpaper</a> The "Yellow Paper": Ethereum's formal specification</li>
</ul>
<h2 id="web3-roadmaps-article-blog"><a
href="https://francescoxx.github.io/free-Web3-resources/#/?id=web3-roadmaps-article-blog"
data-id="web3-roadmaps-article-blog" class="anchor"><span>Web3 Roadmaps (Article / Blog)</span></a>
</h2>
<ul>
<li><a href="https://vitto.cc/web3-and-solidity-smart-contracts-development-roadmap/" target="_blank"
rel="noopener">Complete Web3.0 And Solidity Development Roadmap 2022</a> by <a
href="https://vitto.cc/" target="_blank" rel="noopener">Vittorio Rivabella</a></li>
<li><a href="https://medium.com/theweb3stack/how-to-get-into-crypto-a-roadmap-for-a-web3-developer-4a5806f61869"
target="_blank" rel="noopener">How To Get Into Crypto? 2022 Roadmap For A Web3 Developer</a> by
Darrius Singleton</li>
<li><a href="https://dev.to/jesusantguerrero/my-roadmap-in-web-3-1hgo" target="_blank" rel="noopener">My
roadmap in web 3</a> by Jesus Guerrero</li>
<li><a href="https://eda.hashnode.dev/my-web3-journey-day-100-of-100daysofweb3" target="_blank"
rel="noopener">My web3 journey in 100 days</a> by <a href="https://twitter.com/edatweets_"
target="_blank" rel="noopener">Eda</a></li>
<li><a href="https://dev.to/darshancodes/roadmap-to-become-a-web3-developer-412j" target="_blank"
rel="noopener">Roadmap to become a web3 developer</a> by Darshancodes</li>
<li><a href="https://betterprogramming.pub/has-anyone-seen-web3-a-complete-roadmap-free-resources-to-become-web3-developer-4e5dc9332c1f"
target="_blank" rel="noopener">The Complete Roadmap and Resources to Become a Web3 Developer in
2022</a> by Nagaraj Pandith</li>
<li><a href="https://blog.idrisolubisi.com/web-3-a-developer-roadmap-and-resources-to-get-started"
target="_blank" rel="noopener">Web 3.0: A Developer Roadmap, Guide, and Resources to Get
Started</a> by Olubisi Idris Ayinde</li>
<li><a href="https://blog.oliverjumpertz.dev/your-roadmap-to-becoming-a-web-30-developer" target="_blank"
rel="noopener">Your Roadmap To Becoming A Web 3.0 Developer</a> by Oliver Jumpertz</li>
<li><a href="https://remote3.co/blog-post/complete-web3-developer-roadmap-2022" target="_blank"
rel="noopener">Complete Web3 Developer Roadmap - 2022</a> by Remote3</li>
</ul>
<h2 id="web3-roadmaps-video"><a
href="https://francescoxx.github.io/free-Web3-resources/#/?id=web3-roadmaps-video"
data-id="web3-roadmaps-video" class="anchor"><span>Web3 Roadmaps (Video)</span></a></h2>
<ul>
<li><a href="https://www.youtube.com/watch?v=aVQJGr2J8io" target="_blank" rel="noopener">Become a Web 3
& Blockchain Developer in 2022 | Practical Step by Step Solidity and Web3 Roadmap</a> by
Javascript Mastery</li>
<li><a href="https://www.youtube.com/watch?v=q54j35z3fPQ" target="_blank" rel="noopener">How to Become a
Blockchain Developer? Complete web3 Developer Roadmap</a> by Ishan Sharma</li>
<li><a href="https://www.youtube.com/watch?v=36ubP5Ydh-A" target="_blank" rel="noopener">Complete
Blockchain Development Roadmap 2022 🔥| Project Ideas | Solidity | Web3js | Truffle</a> by Nishant
Chahar</li>
<li><a href="https://www.youtube.com/watch?v=uULy2rc6YDc" target="_blank" rel="noopener">How to become a
Blockchain Developer in 2022? | 🔥 Complete Roadmap + Salary + Tech Stack</a> by Apna College</li>
<li><a href="https://www.youtube.com/watch?v=XRIpjWGbGmA" target="_blank" rel="noopener">How to get
started with Web3 Development - Become Blockchain Developer in 2022 Complete Roadmap</a> by Coding
Money</li>
</ul>
<h2 id="ethereum-development-tools-🛠️"><a
href="https://francescoxx.github.io/free-Web3-resources/#/?id=ethereum-development-tools-%f0%9f%9b%a0%ef%b8%8f"
data-id="ethereum-development-tools-🛠️" class="anchor"><span>Ethereum Development Tools
🛠️</span></a></h2>
<ul>
<li><a href="https://www.rainbowkit.com/" target="_blank" rel="noopener">Rainbow Dev Kit</a> RainbowKit
is a React library that makes it easy to add wallet connection to your dapp. </li>
<li><a href="https://github.com/scaffold-eth/scaffold-eth" target="_blank" rel="noopener">scaffoldETH</a>
Scaffold-eth is everything you need to get started building decentralized applications on Ethereum!
</li>
<li><a href="http://wagmi.sh/" target="_blank" rel="noopener">WAGMI</a> wagmi.sh is a collection of React
Hooks containing everything you need to start working with Ethereum.</li>
</ul>
<h2 id="💡-ethereum-free-resources"><a
href="https://francescoxx.github.io/free-Web3-resources/#/?id=%f0%9f%92%a1-ethereum-free-resources"
data-id="💡-ethereum-free-resources" class="anchor"><span>💡 Ethereum free resources</span></a></h2>
<ul>
<li>
<p><a href="https://github.com/bekatom/awesome-ethereum" target="_blank" rel="noopener">Awesome
Ethereum by bekatom</a> Awesome Ethereum Resources</p>
</li>
<li>
<p><a href="https://github.com/crytic/awesome-ethereum-security" target="_blank"
rel="noopener">Awesome Ethereum Security</a> A curated list of awesome Ethereum security
references</p>
</li>
<li>
<p><a href="https://www.youtube.com/watch?v=WSN5BaCzsbo&ab_channel=TechCrunch" target="_blank"
rel="noopener">Decentralizing Everything</a> Naval Ravikant brings Ethereum's Vitalik Buterin
onstage to explain what it is and why it's useful.</p>
</li>
<li>
<p><a href="https://education.district0x.io/general-topics/understanding-ethereum/" target="_blank"
rel="noopener">District0x</a> An educational resource about Ethereum targeted at beginners.</p>
</li>
<li>
<p><a href="https://ethereum.org/" target="_blank" rel="noopener">ethereum.org</a> ethereum.org is
your portal into the world of Ethereum.</p>
</li>
<li>
<p><a href="https://github.com/ethereumbook/ethereumbook" target="_blank"
rel="noopener">Ethereumbook</a> Mastering Ethereum, by Andreas M. Antonopoulos, Gavin Wood</p>
</li>
<li>
<p><a href="https://etherworld.co/tag/ethereum/" target="_blank" rel="noopener">EtherWorld</a> An
Ethereum educational resource in the form of blogs and video guides</p>
</li>
<li>
<p><a href="https://github.com/ethereum-boilerplate/ethereum-boilerplate" target="_blank"
rel="noopener">Ethereum Boilerplate</a> Ethereum Dapp Boilerplate by Moralis. Despite the name,
it also works with any EVM and Solana</p>
</li>
<li>
<p><a href="https://www.youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g" target="_blank"
rel="noopener">Ethereum Foundation YT Channel</a> Ethereum Foundation YouTube Channel. It
currently has 45k Subscribers</p>
</li>
<li>
<p><a href="https://eth.wiki/" target="_blank" rel="noopener">Ethereum Wiki</a> Ethereum wiki covering
all things related to Ethereum.</p>
</li>
<li>
<p><a href="https://docs.ethhub.io/" target="_blank" rel="noopener">EthHub</a> The goal of EthHub is
to provide a single source for essential Ethereum information.</p>
</li>
<li>
<p><a href="https://docs.soliditylang.org/en/v0.8.13/" target="_blank" rel="noopener">Solidity
Docs</a> Solidity documentation</p>
</li>
</ul>
<ul>
<li><a href="https://github.com/ChristianChiarulli/intro-fullstack-ethereum#readme" target="_blank"
rel="noopener">Intro to Fullstack Ethereum Development</a> by ChristianChiarulli</li>
</ul>
<h2 id="ethereum-languages"><a
href="https://francescoxx.github.io/free-Web3-resources/#/?id=ethereum-languages"
data-id="ethereum-languages" class="anchor"><span>Ethereum Languages</span></a></h2>
<ul>
<li><a href="https://docs.soliditylang.org/en/v0.8.13/" target="_blank" rel="noopener">Solidity</a>
Solidity is an object-oriented, high-level language for implementing smart contracts.</li>
<li><a href="https://vyper.readthedocs.io/en/stable/" target="_blank" rel="noopener">Vyper</a> Vyper is a
contract-oriented, pythonic programming language that targets the Ethereum Virtual Machine (EVM).</li>
</ul>
<h2 id="solidity"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=solidity"
data-id="solidity" class="anchor"><span>Solidity</span></a></h2>
<ul>
<li><a href="https://intellipaat.com/mediaFiles/2019/03/Solidity-Cheat-Sheet.jpg" target="_blank"
rel="noopener">Solidity Cheatsheet</a> A comprehensive Solidity Cheatsheet.</li>
<li><a href="https://github.com/manojpramesh/solidity-cheatsheet" target="_blank" rel="noopener">Solidity
Cheatsheet by Manojpramesh</a> Cheat sheet and best practices for solidity. Write smart contracts
for Ethereum.</li>
<li><a href="https://cryptozombies.io/en/course/" target="_blank" rel="noopener">CryptoZombies Course</a>
Learn how to create and work on smart contracts in an interactive and fun way.</li>
</ul>
<h4 id="tutorials"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=tutorials"
data-id="tutorials" class="anchor"><span>Tutorials</span></a></h4>
<ul>
<li><a href="https://www.freecodecamp.org/news/learn-blockchain-solidity-full-stack-javascript-development/"
target="_blank" rel="noopener">Learn Blockchain, Solidity, and Full Stack JavaScript
Development</a> This course will give you a full introduction into all of the core concepts related
to blockchain, smart contracts, Solidity, full-stack Web3 dapps, decentralized finance (DeFi),
Chainlink, and more.</li>
</ul>
<h2 id="vyper"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=vyper" data-id="vyper"
class="anchor"><span>Vyper</span></a></h2>
<ul>
<li><a href="https://github.com/manojpramesh/vyper-cheatsheet" target="_blank" rel="noopener">Vyper
Cheatsheet by Manojpramesh</a> A comprehensive vyper cheatsheet</li>
<li><a href="https://github.com/spadebuilders/awesome-vyper" target="_blank" rel="noopener">Awesome Vyper
by Spade Builders</a></li>
</ul>
<h4 id="tutorials-1"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=tutorials-1"
data-id="tutorials-1" class="anchor"><span>Tutorials</span></a></h4>
<ul>
<li><a href="https://learn.vyperlang.org/#/" target="_blank" rel="noopener">Learn Vyper by building a
pokemon Game</a></li>
<li><a href="https://www.youtube.com/watch?v=-RHTgegox8I" target="_blank" rel="noopener">Vyper
Programming Tutorial for Ethereum Smart Contract Development (Blockchain)</a> by Dapp University
</li>
</ul>
<h2 id="👨💼-ethereum-clients"><a
href="https://francescoxx.github.io/free-Web3-resources/#/?id=%f0%9f%91%a8%f0%9f%92%bc-ethereum-clients"
data-id="👨💼-ethereum-clients" class="anchor"><span>👨💼 Ethereum Clients</span></a></h2>
<p>An Ethereum client is the software that allows Ethereum nodes to read the block on the Ethereum network.
<a href="https://twitter.com/FrancescoCiull4/status/1484415980293996544" target="_blank"
rel="noopener">(more...)</a></p>
<ul>
<li><a href="https://github.com/hyperledger/besu" target="_blank" rel="noopener">Besu</a> An
enterprise-grade Java-based, Apache 2.0 licensed Ethereum client</li>
<li><a href="https://github.com/ledgerwatch/erigon" target="_blank" rel="noopener">Erigon</a> Ethereum
implementation on the efficiency frontier</li>
<li><a href="https://github.com/ethereum/go-ethereum" target="_blank" rel="noopener">Geth</a> Official Go
implementation of the Ethereum protocol</li>
<li><a href="https://github.com/NethermindEth/nethermind" target="_blank" rel="noopener">Nethermind</a>
flagship .NET Core Ethereum client for Linux, Windows, MacOs - full and actively developed.</li>
</ul>
<h2 id="🌐-ethereum-in-different-languages"><a
href="https://francescoxx.github.io/free-Web3-resources/#/?id=%f0%9f%8c%90-ethereum-in-different-languages"
data-id="🌐-ethereum-in-different-languages" class="anchor"><span>🌐 Ethereum in different
languages</span></a></h2>
<ul>
<li><a href="https://ethereum.org/en/languages" target="_blank" rel="noopener">ethereum.org in different
languages</a> Ethereum docs in 43 languages</li>
</ul>
<h3 id="portuguese"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=portuguese"
data-id="portuguese" class="anchor"><span>Portuguese</span></a></h3>
<ul>
<li><a href="https://www.web3dev.com.br/" target="_blank" rel="noopener">Web3dev</a> Content and
community for web 3 developers in Portuguese.</li>
</ul>
<h3 id="chinese"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=chinese" data-id="chinese"
class="anchor"><span>Chinese</span></a></h3>
<ul>
<li><a href="https://github.com/ethereum/wiki/wiki/%5B%E4%B8%AD%E6%96%87%5D-%E4%BB%A5%E5%A4%AA%E5%9D%8A%E7%99%BD%E7%9A%AE%E4%B9%A6"
target="_blank" rel="noopener">Ethereum Wiki</a> Ethereum Wiki in Chinese</li>
</ul>
<h3 id="french"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=french" data-id="french"
class="anchor"><span>French</span></a></h3>
<ul>
<li><a href="https://www.ethereum-france.com/" target="_blank" rel="noopener">Ethereum France</a> Main
website for Ethereum Content, Communities and Events in French.</li>
</ul>
<h3 id="german"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=german" data-id="german"
class="anchor"><span>German</span></a></h3>
<ul>
<li><a href="https://docs.microsoft.com/de-de/learn/modules/blockchain-learning-solidity/"
target="_blank" rel="noopener">Learn Solidity</a> Microsoft website to learn Solidity in German
</li>
</ul>
<h3 id="hindi"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=hindi" data-id="hindi"
class="anchor"><span>Hindi</span></a></h3>
<ul>
<li><a href="https://ethereum.org/hi/eth/" target="_blank" rel="noopener">Ethereum Hindi</a> Main website
for Ethereum Content, Communities and Events in Hindi</li>
</ul>
<h3 id="italian"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=italian" data-id="italian"
class="anchor"><span>Italian</span></a></h3>
<ul>
<li><a href="https://t.co/oyX6mujXek" target="_blank" rel="noopener">Ethereum Italy</a> Main website for
Ethereum Content, Communities and Events in Italian.</li>
</ul>
<h3 id="spanish"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=spanish" data-id="spanish"
class="anchor"><span>Spanish</span></a></h3>
<ul>
<li><a href="https://es.cointelegraph.com/ethereum-for-beginners" target="_blank"
rel="noopener">Cointelegraph</a> Ethereum guide for Web3 beginners in Spanish.</li>
</ul>
<h3 id="turkish"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=turkish" data-id="turkish"
class="anchor"><span>Turkish</span></a></h3>
<ul>
<li><a href="https://www.btkakademi.gov.tr/portal/course/blokzincir-ve-kripto-paralar-10569#!/about"
target="_blank" rel="noopener">BTK Academy</a> blockchain and cryptocurrency-focused course in
Turkish.</li>
</ul>
<h3 id="vietnamese"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=vietnamese"
data-id="vietnamese" class="anchor"><span>Vietnamese</span></a></h3>
<ul>
<li><a href="https://wiki.tino.org/ethereum-la-gi/" target="_blank" rel="noopener">Tino Group</a>
Ethereum info, wallets and FAQ in Vietnamese</li>
</ul>
<h2 id="dao-communities"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=dao-communities"
data-id="dao-communities" class="anchor"><span>DAO Communities</span></a></h2>
<ul>
<li><a href="https://buildspace.so/" target="_blank" rel="noopener">Buildspace</a> Onboarding devs to
web3. Start building cool stuff right now, earn NFTs, access secret opportunities in crypto.</li>
<li><a href="https://cadena.dev/" target="_blank" rel="noopener">Cadena</a> - Build smart contracts,
dapps, on multiple chains with a community and earn a Cadena NFT Certificate.</li>
<li><a href="https://developerdao.notion.site/Getting-Started-with-Developer-DAO-2bddd332c51a4957b0b83f60f9fa4ebe"
target="_blank" rel="noopener">Developer DAO</a> Build web3 with friends. New membership is
officially open.</li>
<li><a href="https://www.learnweb3.io/" target="_blank" rel="noopener">LearnWeb3DAO</a> Curious about
Web3 as a developer? Wonder what are NFTs, DAOs, DeFi, and Smart Contracts? This is the place for
you!.</li>
<li><a href="https://www.web3.university/" target="_blank" rel="noopener">Web3 University</a> Teaching
Web3 to 20k+ developers worldwide.</li>
<li><a href="https://bio.link/webxdao" target="_blank" rel="noopener">WebXDAO</a> An Open Source
Community that focuses on decentralized applications, web 3, and blockchain technologies 🚀</li>
</ul>
<h2 id="sdks"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=sdks" data-id="sdks"
class="anchor"><span>SDKs</span></a></h2>
<ul>
<li><a href="https://moralis.io/" target="_blank" rel="noopener">Moralis</a> The Ultimate Web3
Development Platform.</li>
<li><a href="https://thirdweb.com/" target="_blank" rel="noopener">thirdweb</a> Smart contracts you
control. Tools that accelerate your workflow. Intuitive SDKs and widgets for developers.</li>
</ul>
<h2 id="oracles"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=oracles" data-id="oracles"
class="anchor"><span>Oracles</span></a></h2>
<p><a href="https://twitter.com/FrancescoCiull4/status/1481895919121534979" target="_blank"
rel="noopener">What is a Blockchain Oracle? Twitter thread</a></p>
<ul>
<li><a href="https://chain.link/" target="_blank" rel="noopener">Chainlink</a> Chainlink decentralized
oracle networks provide tamper-proof inputs, outputs, and computations to support advanced smart
contracts on any blockchain.</li>
<li><a href="https://runonflux.io/" target="_blank" rel="noopener">Flux</a> Flux is the trustless data
layer for web3. Flux is a cross-chain oracle that provides smart contracts with access to economically
secure data feeds on anything.</li>
</ul>
<h2 id="off-chain-data-protocols"><a
href="https://francescoxx.github.io/free-Web3-resources/#/?id=off-chain-data-protocols"
data-id="off-chain-data-protocols" class="anchor"><span>Off Chain Data Protocols</span></a></h2>
<ul>
<li><a href="https://ceramic.network/" target="_blank" rel="noopener">Ceramic Network</a> Ceramic is a
decentralized data network that brings unlimited data composability to Web3 applications.</li>
<li><a href="https://gun.eco/" target="_blank" rel="noopener">Gun</a> The decentralized distributed graph
database engine. GunDB is the Open Source Firebase alternative, a web3 data protocol.</li>
</ul>
<h2 id="nft-marketplaces"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=nft-marketplaces"
data-id="nft-marketplaces" class="anchor"><span>NFT Marketplaces</span></a></h2>
<ul>
<li><a href="https://marketplace.axieinfinity.com/" target="_blank" rel="noopener">Axie Infinity</a> Axie
Marketplace is the online shop for the video game Axie Infinity.</li>
<li><a href="https://decentraland.org/" target="_blank" rel="noopener">Decentraland</a> Decentraland is
completely based on the fantasy (Metaverse), with pretty much the same functionality as the real
world.</li>
<li><a href="https://looksrare.org/" target="_blank" rel="noopener">Looksrare</a> LooksRare is a
community-first NFT marketplace with rewards for participating.</li>
<li><a href="https://opensea.io/" target="_blank" rel="noopener">OpenSea</a> Opensea is the largest NFT
marketplace and the one I used to mint my first NFT.</li>
<li><a href="https://rarible.com/" target="_blank" rel="noopener">Rarible</a> A very large marketplace,
partnered with Adobe. To use the marketplace, you need its own token "Rarible"</li>
</ul>
<h2 id="node-providers"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=node-providers"
data-id="node-providers" class="anchor"><span>Node Providers</span></a></h2>
<p><a href="https://twitter.com/FrancescoCiull4/status/1496711754776199168" target="_blank"
rel="noopener">Node Providers Twitter Thread</a></p>
<ul>
<li><a href="https://www.alchemy.com/" target="_blank" rel="noopener">Alchemy</a> One magic line of code
supercharges your development with the world’s most powerful blockchain developer platform, relied
upon by the majority of the world's top blockchain apps.</li>
<li><a href="https://www.chainstack.com/" target="_blank" rel="noopener">Chainstack</a> From startups to
large enterprises, thousands of businesses of all sizes use Chainstack’s software and APIs to build,
run, and scale blockchain applications.</li>
<li><a href="https://infura.io/" target="_blank" rel="noopener">Infura</a> Suite of high availability
APIs and Developer Tools that can provide quick, reliable access to the Ethereum and IPFS networks so
you can focus on building and scaling next generation software.</li>
<li><a href="https://www.quicknode.com/" target="_blank" rel="noopener">Quicknode</a> Hosted Blockchain
Infrastructure as a Service.</li>
</ul>
<h2 id="📂-file-storage"><a
href="https://francescoxx.github.io/free-Web3-resources/#/?id=%f0%9f%93%82-file-storage"
data-id="📂-file-storage" class="anchor"><span>📂 File Storage</span></a></h2>
<p>Decentralized Storage <a href="https://twitter.com/FrancescoCiull4/status/1483295727078060034"
target="_blank" rel="noopener">thread</a></p>
<ul>
<li><a href="https://www.arweave.org/" target="_blank" rel="noopener">Arweave</a> Arweave enables you to
store documents and applications forever.</li>
<li><a href="https://filecoin.io/" target="_blank" rel="noopener">Filecoin</a> Filecoin is an
open-source, public cryptocurrency and digital payment system intended to be a blockchain-based
cooperative digital storage and data retrieval method.</li>
<li><a href="https://ipfs.io/" target="_blank" rel="noopener">IPFS</a> A peer-to-peer hypermedia protocol
designed to preserve and grow humanity's knowledge by making the web upgradeable, resilient, and more
open.</li>
<li><a href="https://ethersphere.github.io/swarm-home/" target="_blank" rel="noopener">Swarm</a> Swarm is
a distributed storage platform and content distribution service, a native base layer service of the
ethereum web3 stack that aims to provide a decentralized and redundant store for dapp code, user data,
blockchain and state data. Swarm sets out to provide various base layer services for web3, including
node-to-node messaging, media streaming, decentralised database services and scalable state-channel
infrastructure for decentralised service economies.</li>
</ul>
<h2 id="ethereum-development-environment"><a
href="https://francescoxx.github.io/free-Web3-resources/#/?id=ethereum-development-environment"
data-id="ethereum-development-environment" class="anchor"><span>Ethereum Development
Environment</span></a></h2>
<ul>
<li><a href="https://eth-brownie.readthedocs.io/en/stable/toctree.html" target="_blank"
rel="noopener">Brownie</a> Brownie is a Python-based development and testing framework for smart
contracts targeting the Ethereum Virtual Machine.</li>
<li><a href="https://github.com/foundry-rs/foundry" target="_blank" rel="noopener">Foundry</a> Foundry is
a blazing fast, portable and modular toolkit for Ethereum application development written in Rust.
</li>
<li><a href="https://hardhat.org/" target="_blank" rel="noopener">Hardhat</a> Ethereum development
environment for professionals.</li>
<li><a href="https://trufflesuite.com/" target="_blank" rel="noopener">Truffle</a> A world class
development environment, testing framework and asset pipeline for blockchains using the Ethereum
Virtual Machine (EVM), aiming to make life as a developer easier.</li>
</ul>
<h2 id="ethereum-development-ides"><a
href="https://francescoxx.github.io/free-Web3-resources/#/?id=ethereum-development-ides"
data-id="ethereum-development-ides" class="anchor"><span>Ethereum Development IDEs</span></a></h2>
<ul>
<li><a href="https://remix.ethereum.org/" target="_blank" rel="noopener">Remix IDE</a> Web IDE with built
in static analysis, test blockchain VM.</li>
<li><a href="https://marketplace.visualstudio.com/items?itemName=JuanBlanco.solidity" target="_blank"
rel="noopener">VS Code with Solidity Extensions</a> Visutal Studio Code Solidity Extension.</li>
</ul>
<h2 id="🎭-identity"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=%f0%9f%8e%ad-identity"
data-id="🎭-identity" class="anchor"><span>🎭 Identity</span></a></h2>
<ul>
<li><a href="https://metamask.io/" target="_blank" rel="noopener">MetaMask</a> MetaMask is a software
cryptocurrency wallet used to interact with the Ethereum blockchain.</li>
<li><a href="https://phantom.app/" target="_blank" rel="noopener">Phantom</a> Phantom makes it safe &
easy for you to store, buy, send, receive, swap tokens and collect NFTs on the Solana blockchain.</li>
<li><a href="https://walletconnect.com/" target="_blank" rel="noopener">WalletConnect</a> WalletConnect
is the web3 standard to connect blockchain wallets to dapps.</li>
</ul>
<h2 id="indexing"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=indexing"
data-id="indexing" class="anchor"><span>Indexing</span></a></h2>
<ul>
<li><a href="https://thegraph.com/en/" target="_blank" rel="noopener">The Graph</a> The Graph is an
indexing protocol for querying networks like Ethereum and IPFS.</li>
</ul>
<h2 id="client-sdks"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=client-sdks"
data-id="client-sdks" class="anchor"><span>Client SDKs</span></a></h2>
<ul>
<li><a href="https://docs.ethers.io/" target="_blank" rel="noopener">Ether.js</a> The ethers.js library
aims to be a complete and compact library for interacting with the Ethereum Blockchain and its
ecosystem.</li>
<li><a href="https://web3js.readthedocs.io/" target="_blank" rel="noopener">Web3.js</a> Web3.js is a
collection of libraries that allow you to interact with a local or remote ethereum node using HTTP,
IPC or WebSocket.</li>
</ul>
<h2 id="blockchains"><a href="https://francescoxx.github.io/free-Web3-resources/#/?id=blockchains"
data-id="blockchains" class="anchor"><span>Blockchains</span></a></h2>
<p>A list of currently active Blockchains projects. Sorted Alphabetically.</p>
<ul>
<li><a href="https://www.algorand.com/" target="_blank" rel="noopener">Algorand</a> Algorand is a
blockchain cryptocurrency protocol based on proof of stake and a Byzantine agreement that aims to be
scalable.</li>
<li><a href="https://offchainlabs.com/" target="_blank" rel="noopener">Arbitrum</a> The ideal scaling
solution for many DeFi apps Arbitrum Rollup can scale any Ethereum contract.</li>
<li><a href="https://www.avax.network/" target="_blank" rel="noopener">Avalanche</a> Avalanche is a
decentralized, open-source blockchain with smart contract functionality.</li>
<li><a href="https://www.binance.com/en/support/announcement/854415cf3d214371a7b60cf01ead0918"
target="_blank" rel="noopener">Binance Smart Chain</a> BNB, is the blockchain gas token that fuels
transactions on BNB Chain.</li>
<li><a href="https://bitcoin.org/en/" target="_blank" rel="noopener">BitCoin</a> Bitcoin is an innovative
payment network and a new kind of money.</li>
<li><a href="https://cardano.org/" target="_blank" rel="noopener">Cardano</a> Cardano is a public
blockchain platform. It is open-source and decentralized, with consensus achieved using proof of
stake.</li>
<li><a href="https://celo.org/" target="_blank" rel="noopener">Celo</a> Celo is global payments
infrastructure that makes financial tools accessible to anyone with a mobile phone.</li>
<li><a href="https://www.corda.net/" target="_blank" rel="noopener">Corda</a> Build digital financial
solutions quickly on the only private, secure, and scalable DLT platform designed for regulated
markets.</li>
<li><a href="https://cosmos.network/" target="_blank" rel="noopener">Cosmos</a> Cosmos is an
ever-expanding ecosystem of interconnected apps and services, built for a decentralized future.</li>
<li><a href="https://eos.io/" target="_blank" rel="noopener">EOSIO</a> EOSIO is an open-source blockchain
platform that helps developers, investors, and businesses build with confidence.</li>
<li><a href="https://ethereum.org/en/" target="_blank" rel="noopener">Ethereum</a> Ethereum is the
community-run technology powering the cryptocurrency ether (ETH) and thousands of decentralized
applications.</li>
<li><a href="https://fantom.foundation/" target="_blank" rel="noopener">Fantom</a> Fantom is a highly
scalable blockchain platform for DeFi, crypto dApps, and enterprise applications.</li>
<li><a href="https://www.harmony.one/" target="_blank" rel="noopener">Harmony</a> is an open and fast
layer-1 blockchain. It is compatible with EVM and Solidity. It supports very low transaction fees. Its
native crypto is ONE.</li>
<li><a href="https://hedera.com/" target="_blank" rel="noopener">Hedera Hashgraph</a> Hashgraph is a