-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtransfer_example.html
More file actions
67 lines (67 loc) · 2.13 KB
/
transfer_example.html
File metadata and controls
67 lines (67 loc) · 2.13 KB
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
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>mijin simple transfer</title>
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/4.3.0/lodash.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.2/components/core.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.2/components/x64-core.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.2/components/sha3.js"></script>
<script src="transfer.js"></script>
<script src="nacl-fast.js"></script>
<script src="KeyPair.js"></script>
<script src="myscript.js"></script>
<style>
input, textarea{
width: 80%;
}
</style>
</head>
<body>
<h1>送金(mijin)</h1>
<div>
<label for="rcpt">送金先</label>
<input id="rcpt" placeholder="MADIFCCO75ES3IDU3KN2DVXAGW25VSGAV4GTIV62">
</div>
<div>
<label for="xem">micro xem</label>
<input id="xem" type="number" placeholder="100">
</div>
<div>
<label for="rcpt">接続ノード</label>
<select id="node"></select>
</div>
<div>
<label for="send">送金</label>
<button id="send">送金</button>
</div>
<hr/>
<div>送金元情報</div>
<div>
<label for="send">秘密鍵</label>
<input id="privkey"/>
</div>
<div>
<label for="send">公開鍵</label>
<input id="pubkey"/>
</div>
<div>
<label for="addr">アドレス</label>
<input id="addr"/>
</div>
<hr/>
<div>
<label for="account">account info</label>
<textarea id="account" placeholder="作成したアカウントのJSONをコピペすると上の秘密鍵/公開鍵/アドレスが設定されるぞ。"></textarea>
<button id="acount_save">save</button>
</div>
<hr/>
<div>
custom from <a href="https://github.com/mediaprogramer/mijin-SimpleTransfer">mediaprogramer/mijin-SimpleTransfer</a>, thanks!
</div>
<div>
<a href="https://twitter.com/seiketkm">@seiketkm</a>
</div>
</body>
</html>