forked from BananoCoin/bananojs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (27 loc) · 916 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
<!-- index.html -->
<!DOCTYPE html>
<html>
<head>
<title>Bananojs</title>
</head>
<body>
<h1>Bananojs</h1>
<h2>Seed</h2>
<div id="seed"></div>
<h2>Account</h2>
<div id="account"></div>
<script src="web/require.js"></script>
<script src="libraries/blake2b/blake2b-util.js"></script>
<script src="libraries/blake2b/blake2b.js"></script>
<script src="libraries/tweetnacl/nacl.js"></script>
<script src="app/scripts/bananode-api.js"></script>
<script src="app/scripts/logging-util.js"></script>
<script src="app/scripts/sleep-util.js"></script>
<script src="app/scripts/banano-util.js"></script>
<script src="app/scripts/deposit-util.js"></script>
<script src="app/scripts/withdraw-util.js"></script>
<script src="app/scripts/camo-util.js"></script>
<script src="index.js"></script>
<script src="web/main.js"></script>
</body>
</html>