-
Notifications
You must be signed in to change notification settings - Fork 0
/
project_en.html
2574 lines (2488 loc) · 93.2 KB
/
project_en.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>
<html lang="en">
<head>
<!-- <meta http-equiv="refresh" content="10" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous"
/>
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx"
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<link href="./assets/styles/styles.css" rel="stylesheet" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/main_img/coding.svg"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
/>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
window.onscroll = function () {
myFunction();
};
var navbar = document.getElementById("navbar");
var sticky = navbar.offsetTop;
function myFunction() {
if (window.pageYOffset >= sticky) {
navbar.classList.add("sticky");
} else {
navbar.classList.remove("sticky");
}
}
});
</script>
<script src="./assets/js/app.js"></script>
<title>Projects</title>
</head>
<body>
<div class="header">
<!-- <h1>Career change: Software Engineer</h1> -->
<h1></h1>
<!-- <p>Introduction of myself to you.<br />Looking for someone ?</p> -->
<p></p>
<a href="project_en.html" class="button" style="background-color: #42cc8c"
>All my projects</a
>
</div>
<div id="navbar">
<div class="menu-container">
<div class="hamburger-menu">
<div></div>
<div></div>
<div></div>
</div>
<span class="menu-label">Menu</span>
</div>
<div class="navbar-links">
<!-- <a href="index.html">Home</a> -->
<a href="portfolio_en.html">Home</a>
<a class="active" href="project_en.html">Projects</a>
<!-- <a href="resume.html">Resume</a> -->
<a href="course_path_en.html">Study & Resources</a>
<!-- <a href="contact.html">Contact</a> -->
<a href="https://github.com/Jer-B/" target="_blank">Github</a>
</div>
</div>
<section class="hero" id="about">
<img
src="./assets/pages_img/projects.svg"
alt=""
loading="lazy"
class="hero-img"
/>
<div class="bio animate__animated animate__shakeX">
<h2 class="bio-title">Project List</h2>
<p class="bio-text">
Below is a list of projects I have created or participated in so far.
I have compiled projects from various categories and languages: Web3,
Python, JS, C, HTML, and more...
</p>
</div>
</section>
<section class="projects" id="projects">
<h2 class="projects-title">Projects</h2>
<!-- <div class="container bcontent">
<h2>Bootstrap Card with Header and Footer</h2>
<hr />
<div class="card">
<div class="card-header">Card Header</div>
<div class="card-body">
<h3 class="project-title">株ポートフォリオのシムレイション</h3>
<p class="card-text">Welcome to Tutlane. Its card sample text.</p>
<img
src="finance_portofolio.JPG"
alt="expense-tracker"
loading="lazy"
class="project-pic"
/>
<a href="#" class="btn btn-primary">View Profile</a>
</div>
<div class="card-footer text-muted">1 day ago</div>
</div>
</div> -->
<!-- Portofolio -->
<div class="card">
<div class="row">
<div class="avatar-container">
<div class="photo">
<img class="img" src="./assets/projects_img/portofolio.png" />
</div>
</div>
<div class="details-container">
<div class="content">
<h3>Portfolio V1</h3>
<p>
I created this portfolio to showcase my work.<br /><br />
For practice and to avoid to use frameworks, I primarily used
HTML and CSS and a bit of JavaScript to better display the menu
on mobile devices. <br />
I've tried to make it as responsive as possible without using
pre-made responsive codes. <br />
It's also translated into Japanese and French.<br />
</p>
<p>
<a style="display: inline" href="portfolio_fr.html"
>French Version</a
>
</p>
<p>
<a style="display: inline" href="portofolio.html"
>Japanese Version</a
>
</p>
<p>
Languages: HTML, CSS, JS<br />
Host: Github<br />
</p>
<a
href="https://github.com/Jer-B/jer-b.github.io"
target="_blank"
class="project-link, button"
style="background-color: #99e9c4"
>View Github repo</a
>
<!-- <button class="btn-card btn--block card__btn"><a class="btn-link" href="https://portofolio-finance.herokuapp.com/" target="_blank" class="project-link">Check it Out</a></button> -->
</div>
</div>
</div>
<!-- delete class or not class="card-footer"-->
<section class="skills2" id="skills">
<h4 class="skill-header">Tools</h4>
<div class="skills-wrapper">
<div class="first-set animate__animated animate__pulse">
<img
src="./assets/skill_icons/github-icon-1.svg"
alt=""
title="Github"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/html5.svg"
alt=""
title="HTML5"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/css3.svg"
alt=""
title="CSS3"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/javascript.svg"
alt=""
title="JavaScript"
loading="lazy"
class="icon2 icon-card"
/>
</div>
</div>
</section>
</div>
<!-- Wallet -->
<div class="card">
<div class="row">
<div class="avatar-container">
<div class="photo">
<img class="img" src="./assets/projects_img/AA_4.png" />
</div>
</div>
<div class="details-container">
<div class="content">
<h3>AA Multi-Sig Wallet</h3>
<p>
2024<br />
※ Actually upgrading ethers.js from v5 to v6 to be able to use
the front-end completely on Sepolia.<br />
This project uses the 'Account Abstraction' EIP as a base.
</p>
<ul style="font-size: 1em">
<li>
Users can create a new smart contract wallet and designate its
owners.
</li>
<li>
Displays a list of Smart Contract Wallets for which the user's
EOA (External Owned Account) is the owner<br />
It allows one owner of a smart contract wallet to initiate a
transaction.
</li>
<li>Other owners signs the transaction request.</li>
<li>
After all owners have signed, any of the owners can send the
transaction, which is then executed.
</li>
<li>
The smart-contract it implements the UUPS proxy pattern.
</li>
</ul>
<p>
Here is the Github repo of the
<a
style="display: inline"
href="https://github.com/Jer-B/Foundry_multisig_wallet"
target="_blank"
target="_blank"
>Multi-Sig Wallet Project</a
><br /><br />
Languages: Typescript, Solidity<br />
Tools: Foundry, OpenZeppelin, NextJS, TailwindCSS, Vercel<br />
</p>
<a
href="https://foundry-multisig-wallet.vercel.app/"
target="_blank"
class="project-link, button"
style="background-color: #99e9c4"
>View website</a
>
<!-- <button class="btn-card btn--block card__btn"><a class="btn-link" href="https://portofolio-finance.herokuapp.com/" target="_blank" class="project-link">Check it Out</a></button> -->
</div>
</div>
</div>
<!-- delete class or not class="card-footer"-->
<section class="skills2" id="skills">
<h4 class="skill-header">Tools</h4>
<div class="skills-wrapper">
<div class="first-set animate__animated animate__pulse">
<img
src="./assets/skill_icons/solidity.svg"
alt=""
title="Solidity"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/foundry.png"
alt=""
title="Foundry"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/eth.png"
alt=""
title="Ethereum"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/nextjs.svg"
alt=""
title="NextJS"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/typescript.svg"
alt=""
title="Typescript"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/vercel.png"
alt=""
title="Vercel"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/tailwind.svg"
alt=""
title="tailwind"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/openzeppelin1.svg"
alt=""
title="OpenZeppelin"
loading="lazy"
class="icon2 icon-card"
/>
</div>
</div>
</section>
</div>
<!-- Stablecoin -->
<div class="card">
<div class="row">
<div class="avatar-container">
<div style="width: 80%; background-color: black" class="photo">
<img
style="width: 70%; border-style: none"
class="img"
src="./assets/projects_img/DSC.png"
/>
</div>
</div>
<div class="details-container">
<div class="content">
<h3>Stablecoin「DSC」(Decentralized StableCoin)</h3>
<p>
2023<br />
This project is a stablecoin contract where users can deposit
WETH and WBTC in exchange for DSC tokens which have a 1:1 ratio
to USD. The goal is to provide a stablecoin that is linked to
the value of USD while being decentralized and understand how
they work.<br /><br />
Languages: Solidity<br />
Tools: Foundry, OpenZeppelin, Chainlink<br />
</p>
<a
href="https://github.com/Jer-B/Foundry_Stablecoin"
target="_blank"
class="project-link, button"
style="background-color: #99e9c4"
>View Github repo</a
>
<!-- <button class="btn-card btn--block card__btn"><a class="btn-link" href="https://portofolio-finance.herokuapp.com/" target="_blank" class="project-link">Check it Out</a></button> -->
</div>
</div>
</div>
<!-- delete class or not class="card-footer"-->
<section class="skills2" id="skills">
<h4 class="skill-header">Tools</h4>
<div class="skills-wrapper">
<div class="first-set animate__animated animate__pulse">
<img
src="./assets/skill_icons/solidity.svg"
alt=""
title="Solidity"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/foundry.png"
alt=""
title="Foundry"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/eth.png"
alt=""
title="Solidity"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/openzeppelin1.svg"
alt=""
title="OpenZeppelin"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/chainlink1.svg"
alt=""
title="Chainlink"
loading="lazy"
class="icon2 icon-card"
/>
</div>
</div>
</section>
</div>
<!-- Hackathon Pasmo -->
<div class="card">
<div class="row">
<div class="avatar-container">
<div
style="width: 80%; background-color: rgb(150, 221, 241)"
class="photo"
>
<img
style="width: 80%; border-style: none"
class="img"
src="./assets/projects_img/DALLE_PASMO.png"
/>
</div>
</div>
<div class="details-container">
<div class="content">
<h3>PASMO On-Chain「Hackathon Project」</h3>
<p>
2023<br />
※ I am in contact with other team members. We are discussing the
possibility of making the project public for job recruitment
purposes. If it is possible to make it public, the source code
will be pushed to github, and the frontend will also be
developed.<br />
This project was created during a hackathon and finished in
second place among 26 teams. Our team of three, including
myself, conducted a simple project on what would happen if the
Pasmo IC card, used for train rides and store payments, was put
on the blockchain.<br /><br />
The project features 100% owner-controlled and fully manageable
funds charged on the card at any time. This includes anti-fraud
measures, the ability for owners to regain control of lost cards
immediately, and an automatic reset function for the card's
conditions in case of rail accidents or other incidents.<br />
</p>
<!-- <p>
This project has the potential to significantly impact railway
companies. It can benefit and negatively affect the railway
companies in various ways, potentially generating hundreds of
millions of yen in profits. By switching to on-chain transaction
verification, it reduces the use of electricity and data
centers. Payments can be made in assets that increase in value
over time, and assets worth hundreds of millions of yen can be
automatically exchanged for Japanese yen with minimal fees
(several hundred yen). Fewer staff are needed for card
management, and there's no need for personnel involved in
maintaining data centers and servers for card checks. As a
result, fewer servers and data centers are required, reducing
the need for company-owned buildings and infrastructure, among
other reasons.<br /><br />
</p> -->
<p>
Languages: Python, Solidity<br />
Tools: Foundry, OpenZeppelin, Chainlink<br />
</p>
<a class="project-link, button" style="background-color: #99e9c4"
>Private repo</a
>
<!-- <button class="btn-card btn--block card__btn"><a class="btn-link" href="https://portofolio-finance.herokuapp.com/" target="_blank" class="project-link">Check it Out</a></button> -->
</div>
</div>
</div>
<!-- delete class or not class="card-footer"-->
<section class="skills2" id="skills">
<h4 class="skill-header">Tools</h4>
<div class="skills-wrapper">
<div class="first-set animate__animated animate__pulse">
<img
src="./assets/skill_icons/solidity.svg"
alt=""
title="Solidity"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/foundry.png"
alt=""
title="Foundry"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/eth.png"
alt=""
title="Ethereum"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/openzeppelin1.svg"
alt=""
title="OpenZeppelin"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/chainlink1.svg"
alt=""
title="Chainlink"
loading="lazy"
class="icon2 icon-card"
/>
</div>
</div>
</section>
</div>
<!-- Flash loan and Liquidator bots -->
<div class="card">
<div class="row">
<div class="avatar-container">
<div style="width: 80%; background-color: black" class="photo">
<img
style="width: 70%"
class="img"
src="./assets/projects_img/liquidator.png"
/>
</div>
</div>
<div class="details-container">
<div class="content">
<h3>Flash Loan Bot and Liquidation Bot</h3>
<p>
※ Because it uses real money, just in case I decided to keep
this project private for a bit.<br /><br />
These are market position liquidation bots and flash loan bots
created using the Silverback framework of ApeWorx
(Python-based). The bots can be used on various AMMs and lending
platforms such as AAVE, Uniswap, 1inch, etc. They are designed
to protect against trades being front-run or crushed by MEV
bots.<br /><br />
Languages: Python, Solidity<br />
Tools: Foundry, Silverback, OpenZeppelin, Chainlink, contract
interfaces of AAVE, Uniswap, 1inch and other AMMs..<br />
</p>
<a class="project-link, button" style="background-color: #99e9c4"
>Private repo</a
>
<!-- <button class="btn-card btn--block card__btn"><a class="btn-link" href="https://portofolio-finance.herokuapp.com/" target="_blank" class="project-link">Check it Out</a></button> -->
</div>
</div>
</div>
<!-- delete class or not class="card-footer"-->
<section class="skills2" id="skills">
<h4 class="skill-header">Tools</h4>
<div class="skills-wrapper">
<div class="first-set animate__animated animate__pulse">
<img
src="./assets/skill_icons/solidity.svg"
alt=""
title="Solidity"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/foundry.png"
alt=""
title="Foundry"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/python.svg"
alt=""
title="Python"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/eth.png"
alt=""
title="Solidity"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/apeworx.jpeg"
alt=""
title="Apeworx"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/silverback-grey.png"
alt=""
title="Silverback"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/openzeppelin1.svg"
alt=""
title="OpenZeppelin"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/chainlink1.svg"
alt=""
title="Chainlink"
loading="lazy"
class="icon2 icon-card"
/>
</div>
</div>
</section>
</div>
<!-- Ethernaut -->
<div class="card">
<div class="row">
<div class="avatar-container">
<div class="photo">
<img class="img" src="./assets/projects_img/ethernaut.png" />
</div>
</div>
<div class="details-container">
<div class="content">
<h3>Ethernaut Challenge Solutions</h3>
<p>
2023 ~ 2024<br />
※ The repository is updated bit by bit as I need to redo
challenges for it.
<br /><br />
Ethernaut is a Web3/Solidity-based coding exploit game played on
the Ethereum Virtual Machine (EVM). Each level is a smart
contract that needs to be hacked.<br /><br />
Languages: Solidity<br />
Tools: Foundry, Remix.
</p>
<a
href="https://github.com/Jer-B/Ethernaut_all_-spoil-"
target="_blank"
class="project-link, button"
style="background-color: #99e9c4"
>View Github repo</a
>
<!-- <button class="btn-card btn--block card__btn"><a class="btn-link" href="https://portofolio-finance.herokuapp.com/" target="_blank" class="project-link">Check it Out</a></button> -->
</div>
</div>
</div>
<!-- delete class or not class="card-footer"-->
<section class="skills2" id="skills">
<h4 class="skill-header">Tools</h4>
<div class="skills-wrapper">
<div class="first-set animate__animated animate__pulse">
<img
src="./assets/skill_icons/solidity.svg"
alt=""
title="Solidity"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/foundry.png"
alt=""
title="Foundry"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/remix.png"
alt=""
title="Remix"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/eth.png"
alt=""
title="Solidity"
loading="lazy"
class="icon2 icon-card"
/>
</div>
</div>
</section>
</div>
<!-- Smart Contract Exploit challenge -->
<div class="card">
<div class="row">
<div class="avatar-container">
<div class="photo">
<img class="img" src="./assets/projects_img/badges_1.avif" />
</div>
</div>
<div class="details-container">
<div class="content">
<h3>On-Chain Challenge Solutions</h3>
<p>
2022 ~ 2024<br />
※ The repository needs to be updated by redoing all challenges.
Therefore, it will be updated when i will have the time to redo
them again.<br /><br />
Various challenge solutions for contracts that have already been
deployed on the testnet. It's a way to practice how to interact
with and read other contracts. There are simple challenges as
well as challenges that require interaction with external
contracts or to exploit them. The problem description of each
challenge is included in the smart-contract. Upon solving a
challenge, the reward is an NFT.<br /><br />
Languages: Solidity<br />
Tools: Foundry, Remix<br />
</p>
<a
href="https://github.com/Jer-B/Foundry_onchain_challenges_-spoil-"
target="_blank"
class="project-link, button"
style="background-color: #99e9c4"
>View Github repo</a
>
<!-- <button class="btn-card btn--block card__btn"><a class="btn-link" href="https://portofolio-finance.herokuapp.com/" target="_blank" class="project-link">Check it Out</a></button> -->
</div>
</div>
</div>
<!-- delete class or not class="card-footer"-->
<section class="skills2" id="skills">
<h4 class="skill-header">Tools</h4>
<div class="skills-wrapper">
<div class="first-set animate__animated animate__pulse">
<img
src="./assets/skill_icons/solidity.svg"
alt=""
title="Solidity"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/foundry.png"
alt=""
title="Foundry"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/eth.png"
alt=""
title="Solidity"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/remix.png"
alt=""
title="Remix"
loading="lazy"
class="icon2 icon-card"
/>
</div>
</div>
</section>
</div>
<!-- DAO -->
<div class="card">
<div class="row">
<div class="avatar-container">
<div
style="width: 80%; background-color: rgb(147, 184, 189)"
class="photo"
>
<img
style="width: 80%; border-style: none"
class="img"
src="./assets/projects_img/DALLE_DAO.png"
/>
</div>
</div>
<div class="details-container">
<div class="content">
<h3>Basic DAO (Decentralized Autonomous Organization)</h3>
<p>
2023<br />
This is a very simple DAO project where users can make proposals
and vote on them. A timer is set, and no other proposals can be
made until the previous proposal cycle ends. Voting power is
based on governance tokens. This contract is completely
controlled by the DAO, and no individual entity owns the
contract. It is fully decentralized.<br /><br />
※ This DAO is not intended for production use. The reason is
that the voting system encourages speculation over the price of
the governance tokens, rather than rational voting behavior
only.<br /><br />
Languages: Solidity<br />
Tools: Foundry, Openzeppelin<br />
</p>
<a
href="https://github.com/Jer-B/Foundry_DAO"
target="_blank"
class="project-link, button"
style="background-color: #99e9c4"
>View Github repo</a
>
<!-- <button class="btn-card btn--block card__btn"><a class="btn-link" href="https://portofolio-finance.herokuapp.com/" target="_blank" class="project-link">Check it Out</a></button> -->
</div>
</div>
</div>
<!-- delete class or not class="card-footer"-->
<section class="skills2" id="skills">
<h4 class="skill-header">Tools</h4>
<div class="skills-wrapper">
<div class="first-set animate__animated animate__pulse">
<img
src="./assets/skill_icons/solidity.svg"
alt=""
title="Solidity"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/foundry.png"
alt=""
title="Foundry"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/eth.png"
alt=""
title="Solidity"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/openzeppelin1.svg"
alt=""
title="OpenZeppelin"
loading="lazy"
class="icon2 icon-card"
/>
</div>
</div>
</section>
</div>
<!-- NFT1 -->
<div class="card">
<div class="row">
<div class="avatar-container">
<div class="photo">
<img class="img" src="./assets/projects_img/nft_project2.png" />
</div>
</div>
<div class="details-container">
<div class="content">
<h3>Basic NFT and Dynamic NFT Project</h3>
<p>
2023<br />
Regarding these two projects:<br />
One is a basic NFT project with basic features and a direct
minting process, while the other is a dynamic NFT project where
users can freely change the image of their NFT. Both projects
use SVG and Base64 URIs and are hosted on IPFS.<br /><br />
You can easily use the contract for Dynamic NFT here:
<a
style="display: inline"
href="https://abi.ninja/0x5ef9f85711932c78f80f70ee4dd4c7621aed33ce/sepolia?functions=mintNFT%2CmintNft"
target="_blank"
>Dynamic NFT ・ ABI Ninja</a
>
<br />
You can easily use the contract for Basic NFT here:
<a
style="display: inline"
href="https://abi.ninja/0x7fdC673352cb7b8Efa1EB69A28DDe4FA2e1D0A8C/sepolia?functions=mintNFT"
target="_blank"
>Dynamic NFT ・ ABI Ninja</a
><br /><br />
Languages: Solidity<br />
Tools: Foundry, Openzeppelin, IPFS<br />
</p>
<a
href="https://github.com/Jer-B/Foundry_NFTBasic_and_NFTMood"
target="_blank"
class="project-link, button"
style="background-color: #99e9c4"
>View Github repo</a
>
<!-- <button class="btn-card btn--block card__btn"><a class="btn-link" href="https://portofolio-finance.herokuapp.com/" target="_blank" class="project-link">Check it Out</a></button> -->
</div>
</div>
</div>
<!-- delete class or not class="card-footer"-->
<section class="skills2" id="skills">
<h4 class="skill-header">Tools</h4>
<div class="skills-wrapper">
<div class="first-set animate__animated animate__pulse">
<img
src="./assets/skill_icons/solidity.svg"
alt=""
title="Solidity"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/foundry.png"
alt=""
title="Foundry"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/Ipfs.png"
alt=""
title="IPFS"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/eth.png"
alt=""
title="Solidity"
loading="lazy"
class="icon2 icon-card"
/>
<img
src="./assets/skill_icons/openzeppelin1.svg"
alt=""
title="OpenZeppelin"
loading="lazy"
class="icon2 icon-card"
/>
</div>
</div>
</section>
</div>
<!-- Defi -->
<div class="card">
<div class="row">
<div class="avatar-container">
<div class="photo">
<img
class="img"
src="./assets/projects_img/NFT_Marketplace2.png"
/>
</div>
</div>
<div class="details-container">
<div class="content">
<h3>NFT Marketplace</h3>
<p>
2022<br />
<strong style="color: red"
>[February 2024 Updt] Migrated to Foundry and Sepolia </strong
><br />
This is a marketplace where users can list their NFTs for sale
and purchase NFTs. When an NFT is purchased, it is transferred
from the seller to the buyer.<br /><br />
Languages: Solidity, Javascript<br />
Tools: HardHat, Chainlink, Openzeppelin, IPFS, NextJS,
GraphQL<br />
</p>