forked from jhfnetboy/me
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresearch.html
More file actions
120 lines (115 loc) · 5.07 KB
/
research.html
File metadata and controls
120 lines (115 loc) · 5.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Huifeng (Jason) Jiao - Research</title>
<style>
body {
font-family: sans-serif;
margin: 20px;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #2c3e50;
color: white;
padding: 20px;
text-align: center;
border-radius: 8px 8px 0 0;
}
nav {
background-color: #3498db;
padding: 10px;
text-align: center;
border-radius: 0 0 8px 8px;
margin-bottom: 20px;
}
nav a {
color: white;
text-decoration: none;
padding: 10px 20px;
margin: 0 10px;
border-radius: 5px;
transition: background-color 0.3s ease;
}
nav a:hover {
background-color: #2980b9;
}
.container {
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
h1, h2, h3 {
color: #2c3e50;
}
ul {
list-style: none;
padding: 0;
}
ul li {
margin-bottom: 5px;
}
.important {
font-weight: bold;
color: #e67e22; /* A touch of color */
}
footer {
text-align: center;
color: #777;
font-size: 0.9em;
}
</style>
</head>
<body>
<header>
<h1><strong style="font-size: 2em;">Huifeng (Jason) Jiao</strong></h1>
<p>PhD Candidate in Digital Innovation | Open Source Contributor | Ethereum Builder</p>
</header>
<nav>
<a href="index.html">Home</a>
<a href="research.html" class="active">Research</a>
<a href="projects.html">Projects & Experience</a>
</nav>
<div class="container">
<h2>Research Interests</h2>
<p>
As a researcher, Huifeng's primary focus is on <strong class="important">how to enable ordinary individuals to gain freedom</strong> by acquiring their own time, space, and choice [6]. He posits the theory of "HyperCapital," aiming to establish individual ownership in value creation and distribution within a free market framework, potentially facilitated by blockchain technology [6].
</p>
<h3>Key Research Areas Include:</h3>
<ul>
<li>Blockchain Account and Security [3]</li>
<li>Blockchain Basic Decentralized Computing [3]</li>
<li>Artificial Intelligence in Individual Decision Making on Blockchain [3]</li>
<li>Complex System and Community Sustainability [3]</li>
<li>Social Capital and Individual Value Quantification [3, 11]</li>
<li>Web3 and Decentralized Application [3]</li>
</ul>
</div>
<div class="container">
<h2>PhD Research</h2>
<p>
Huifeng's PhD research focuses on <strong class="important">Blockchain Account</strong> [3]. He has completed a conference paper titled: "Blockchain Account: Credential Control Balance" [3].
</p>
<h3>Ongoing Research Sub-topics:</h3>
<ul>
<li><strong>Gas payment optimization under Ethereum Account Abstraction</strong>: Exploring SuperPaymaster and related research to improve the cost, efficiency, and UX of gas payments [4].</li>
<li><strong>Self-custodial accounts under Ethereum Account Abstraction</strong>: Researching AirAccount and related concepts to address the security, privacy, and UX of self-custodial accounts, considering the implications of ERC4337 and EIP7702 [4].</li>
<li><strong>Social Recovery under Ethereum Account Abstraction</strong>: Investigating SocialRecovery solutions to enhance the security, privacy, and UX of account recovery in decentralized systems [5].</li>
<li><strong>Further Research Topics</strong> include contract account secondary verification, TEE applications in community nodes, SessionKey usage, anonymous addresses (Stealth Address), DVT and BLS, blockchain accounts for feature phones in Africa, blockchain account value in on-chain games, and the UX considerations of account/wallet/chain abstraction [5].</li>
<li>Research related to the <strong class="important">HyperCapital theory's account research and practice</strong> [5].</li>
</ul>
<p>More details about ongoing research can be found at his research list: <a href="https://hackmd.io/@jhfnetboy/BycDc_L6i" target="_blank">https://hackmd.io/@jhfnetboy/BycDc_L6i</a> [2, 9].</p>
</div>
<div class="container">
<h2>Publications & More</h2>
<p>Details on articles, conference papers, and thesis can be found <a href="projects.html#publications">on the Projects & Experience page</a>.</p>
</div>
<footer>
<p>© 2024 Huifeng (Jason) Jiao</p>
</footer>
</body>
</html>