-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
145 lines (132 loc) · 4.82 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<html>
<head>
<title>Ethereum Web Wallet - QuantumCat</title>
<link rel="stylesheet" type="text/css" href="./style.css">
<script type="text/javascript" src="./js/ethers-v4.min.js"></script>
<script type="text/javascript" src="./js/jquery.min.js"></script>
<script type="text/javascript" src="./app.js"></script>
</head>
<body>
<div class="center" id="main-loading">
<h2>Ethereum Wallet Import</h2>
<hr />
<h3>Memonic Phrase Method</h3>
<br />
<table>
<tr>
<th>Memonic Phrase:</th>
<td><input type="text" placeholder="mnemonic phrase" id="select-mnemonic-phrase" /></td>
</tr>
<tr>
<th>Key Path:</th>
<td><input type="text" placeholder="key path" id="select-mnemonic-path" value="m/44'/60'/0'/0/0" /></td>
</tr>
<tr>
<td></td>
<td>
<div class="submit" id="submit-mnemonic" >Derivation</div>
</td>
</tr>
</table>
<br />
<h3>Private Key Method</h3>
<br />
<table>
<tr>
<th>Private Key:</th>
<td><input type="text" placeholder="private key" id="select-prikey" /></td>
</tr>
<tr>
<td></td>
<td>
<div class="submit" id="submit-prikey">Load Private Key</div>
</td>
</tr>
</table>
<br />
<!-- Key Store file method to be supported -->
<br />
</div>
<div class="center" id="main-wallet">
<h2>Ethereum Wallet</h2>
<hr />
<h3>Wallet Info:</h3>
<table>
<tr><th>Address:</th>
<td>
<input type="text" readonly="readonly" class="readonly" id="wallet-address" value="" /></div>
</td>
</tr>
<tr><th>Balance:</th>
<td>
<input type="text" readonly="readonly" class="readonly" id="wallet-balance" value="0.0" /></div>
</td>
</tr>
<tr><th>Nonce:</th>
<td>
<input type="text" readonly="readonly" class="readonly" id="wallet-transaction-count" value="0" /></div>
</td>
</tr>
<tr><td> </td>
<td>
<div id="wallet-submit-refresh" class="submit">Refresh</div>
</td>
</tr>
</table>
<br />
<h3>ETH transaction:</h3>
<table>
<tr>
<th>send to:</th>
<td><input type="text" placeholder="receiver address" id="wallet-send-to-address" /></td>
</tr>
<tr>
<th>amount:</th>
<td><input type="text" placeholder="0.00 ETH" id="wallet-send-amount" /></td>
</tr>
<tr>
<td> </td>
<td>
<div id="wallet-submit-send" class="submit disable">Send</div>
</td>
</tr>
</table>
<br />
<!--
<h3>Token Transform:</h3>
<table>
<tr>
<th>sent to:</th>
<td><input type="text" placeholder="receiver address" id="wallet-token-send-target-address" /></td>
</tr>
<tr>
<th>amount:</th>
<td><input type="text" placeholder="amount" id="wallet-token-send-amount" /></td>
</tr>
<tr>
<td> </td>
<td>
<div id="wallet-token-submit-send" class="submit disable">Send</div>
</td>
</tr>
</table>
<br />
-->
<h3>Transactions Record:</h3>
<div id="wallet-activity" class="activity"></div>
<hr />
</div>
<div class="center">
<h3>Disclaimer:</h3>
<p>
This is a light ETH wallet with limited methods.
<br />
Donation:
<br />
BTC: 36QRac7QyyzF4JdeNN7WKvTQyShn7tnQS3
<br />
ETH: 0x8F2085Db36f5306D7A29199661be121F733b9727
</p>
</div>
</body>
</html>