-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Advanced Smart Contracts</title>
<style>
a {
font-size: 1.7em;
}
.content {
padding: 0 20px;
}
</style>
</head>
<body>
<div class="content">
<h1><a href="course-introduction" target="_blank">Course Introduction</a></h1>
<h1>Lessons</h1>
<ul>
<li><a href="notes/storage-exception-debugging/lecture/index.html" target="_blank">Accessing storage, Exception handling and Debugging in Smart contract</a></li>
<li><a href="notes/solidity-assembly/lecture/introduction.html" target="_blank">Introduction to Solidity assembly</a></li>
<li><a href="notes/solidity-assembly/lecture/data-location-solidity-assembly.html" target="_blank">Data location in Solidity assembly</a></li>
<li><a href="notes/smart-contract-security-audit/lecture/index.html" target="_blank">Smart Contract Security Audit</a></li>
<li><a href="notes/sc-dev-tools/lecture/index.html" target="_blank">Smart contract development tools</a></li>
<li><a href="notes/create2/lecture/index.html" target="_blank">CREATE2</a></li>
<li><a href="notes/intro-state-channel/lecture/index.html" target="_blank">Introduction to state channel</a></li>
<li><a href="notes/meta-transactions/lecture/index.html" target="_blank">Meta transactions</a></li>
<li><a href="notes/sc-upgradeability-patterns/lecture/index.html" target="_blank">Smart contract upgradeability patterns</a></li>
<li><a href="notes/vyper/lecture/index.html" target="_blank">Vyper</a></li>
<li><a href="notes/zero-knowledge-proof/lecture/index.html" target="_blank">Zero Knowledge proof</a></li>
<li><a href="notes/sc-best-practices/lecture/index.html" target="_blank">Smart Contract best practices</a></li>
<li><a href="notes/ethereum-2.0/lecture/index.html" target="_blank">Ethereum 2.0</a></li>
</ul>
</div>
</body>
</html>