forked from danfinlay/js-eth-personal-sign-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (25 loc) · 781 Bytes
/
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
<!doctype html>
<html>
<head>
<title>Eth Sign Tests</title>
</head>
<body>
<button id="connectButton">Connect</button>
<button id="ethSignButton">eth_sign</button>
<button id="personalSignButton">personal_sign</button>
<button id="personalRecoverTest">personal_ecRecover</button>
<button id="ethjsPersonalSignButton">ethjs personal sign</button>
<button id="signTypedDataButton">sign typed data</button>
<button id="ethjsSignTypedDataButton">sign typed data with ethjs</button>
<br>
<a href="https://github.com/danfinlay/js-eth-personal-sign-examples">View the source code on Github</a>
</body>
<script src="bundle.js"></script>
</html>
<!doctype html>
<html>
<head>
<title>ENS Test</title>
</head>
<body></body>
</html>