-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (106 loc) · 4.32 KB
/
index.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
<!DOCTYPE html>
<!-- saved from url=(0026)https://toc.cryptobook.us/ -->
<html lang="en">
<script src="chrome-extension://dlcobpjiigpikoobohmabehhmhfoodbb/inpage.js" id="argent-x-extension"
data-extension-id="dlcobpjiigpikoobohmabehhmhfoodbb"></script>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<link rel="stylesheet" href="style/index.css">
<title>Understanding Ethereum: Go-ethereum Source Code Analysis</title>
</head>
<header>
<nav class="navbar navbar-expand-md navbar-dark bg-light" aria-label="Navigation Bar">
<div class="container">
<a href="https://www.abcde.com/" class="navbar-brand">
<img src="./style/abcde.svg" width="150"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbar721"
aria-controls="navbar721" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbar721">
<ul class="navbar-nav ms-auto align-items-center">
<li class="nav-link active" style="color: black;"><a href="https://twitter.com/ABCDELabs">Twitter</a>
</li>
<li> <a class="nav-link active" style="color: black;" title="Youtube"
href="https://www.youtube.com/@ABCDELabs/videos" target="_new"> Youtube</a>
</li>
<li> <a class="nav-link active" style="color: black;" href="mailto:[email protected]" target="_new"> Contact</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<body>
<div id="title" class="top-outer">
<div class="top-inner row">
<div class="text-center" style="margin-top: 1.5em;">
<h1 class="fw-bolder justify-content-center">Understanding Ethereum: <br> Go-ethereum Source Code Analysis
</h1>
</div>
</div>
<div class="top-inner row">
<div>
<h3 class="text-center">
By
<a href="https://github.com/hsyodyssey" target="_blank" class="fw-bolder">Siyuan Han</a>
<a href="https://twitter.com/ABCDELabs" target="_blank" class="fw-bolder">@ABCDE</a>
</h3>
</div>
</div>
</div>
<div class="p-4 bg-light">
<div>
<h3 class="text-center">
Download book:
<a href="ABCDE_Understanding_Ethereum_CN_v01.pdf" target="_blank" id="booklink"
style="color: rebeccapurple;">Version 0.1</a>
<span style="font-size:70%">(latest version, May. 2023)</span>
</h3>
</div>
</div>
<br>
<div>
<div style="font-size: 1.1618em;">
<h4 class="font-weight-bold">
Part I: Basic Workflow and Data Components
</h4>
<ul class="catalog">
<li>1: Perface </li>
<li>2: The workflow of starting a geth node </li>
<li>3: Account and Contract </li>
<li>4: State Management i: StateDB </li>
<li>5: State Management ii: State Trie and Storage Trie </li>
<li>6: Transaction </li>
<li>7: Block and Blockchain </li>
<li>8: Synchronization of transactions and blocks </li>
<li>9: Implementation of the transaction pool </li>
</ul>
<hr>
<h4 class="font-weight-bold" style="background: #99a0e7; max-width: 32em;">
[Work in Progress] Part II: Advanced Topics and Lower-level Services
</h4>
<ul class="catalog">
<li>10: State snapshot </li>
<li>11: State optimization: Batch and Pruning </li>
<li>12: Underlying Storage Engine: leveldb in pratice </li>
<li>13: More cache </li>
<li>14: Understanding EVM </li>
<li>15: Transaction Signer </li>
<li>16: RPC and IPC </li>
<li>17: From Plasma to Rollup </li>
</ul>
</div>
<hr>
</div>
</body>
<footer class="footer py-3 bg-light" style="margin: auto; max-width: 80em;">
<div style="text-align: center; font-size: 1.2em;">
<p style="margin-bottom: 0;">Maintained by <a href="https://twitter.com/ABCDELabs">ABCDELabs</a>
</div>
</footer>
</html>