-
Notifications
You must be signed in to change notification settings - Fork 9
/
signer_tools.html
49 lines (46 loc) · 2.07 KB
/
signer_tools.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Stellar signer tools</title>
<meta charset="UTF-8" />
<script src="js/aes.js"></script>
<script src="js/stellar-sdk.min.js"></script>
<script src="js/signer_tools.js"></script>
</head>
<body>
<h3>Stellar Simple Signers Tool Set</h3><br />
also refresh bal:<input id="change_network" type="button" value="change_network" />
<select name="network" id="network" value='testnet'>
<option>testnet</option>
<option>live</option>
<option>mss_server</option>
<input id="current_mode" value="current_mode?" /><br />
MSS-server socket Status: <span id="status"></span><br />
MSS-server URL: <input id="url" size="50" /><br />
<input id="open" type="button" value="Connect" />
<input id="close" type="button" value="Disconnect" /><br />
<input id="save" type="button" value="save_seed" />
<input id="restore" type="button" value="restore_seed" />
<input id="list_seed_keys" type="button" value="list_seed_keys" /><br />
pass phrase:<input id="pass_phrase" size="60" /><br />
seed nick name or public ID:<input id="seed_nick" size="60" value = "seed" /><br />
seed:<input id="seed" size="60" /><br />
account:<input id="account" size="60" /><br />
account native balance: <input id="balance" size="40" /><br />
account thesholds settings: <input id="thresh_set" size="60" /><br />
present Home_domain: <input id="home_domain_now" size="60" /><br />
______________________________________________________<br />
Change Account Settings <br />
<input id="add_signer" type="button" value="add_signer" />
<input id="signer" size="60" />
weight<input id="weight" size="3" /><br />
<input id="change_threshold" type="button" value="change_options" />
Master_weight: <input id="master_weight" size="3" value = 1 />
Threshold: <input id="threshold" size="3" value = 0 /><br />
Home_domain: <input id="home_domain" size="40" value = "equid.co" /> <br />
______________________________________________________<br />
<div style="width:800px;height:300px;line-height:3em;overflow:scroll;padding:10px;">
<span id="message"></span>
</div>
</body>
</html>