-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
34 lines (32 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>issuehunter</title>
<link rel="stylesheet" type="text/css" href="http://issuehunter.github.io/stylesheets/github-markdown.css">
<link rel="stylesheet" type="text/css" href="http://issuehunter.github.io/stylesheets/style.css" />
<script src="https://rawgit.com/ethereum/web3.js/develop/dist/web3.js"></script>
<script src="/src/contract-abi.js"></script>
<script src="/src/app.js"></script>
<script src="/src/index.js"></script>
</head>
<body>
<article class="markdown-body">
<header class="logo">
<h1><span class="blue">issue</span><span class="red">hunter</span></h1>
</header>
<p>
Coinbase Address: <strong id="coinbase"></strong></br>
Coinbase Balance: <strong id="balance"></strong></br>
Accounts: <strong id="accounts"></strong></br>
Latest Block Number: <strong id="latestBlock"></strong></br>
Latest Block Timestamp: <strong id="latestBlockTimestamp"></strong></br>
Latest Block Hash: <strong id="latestBlockHash"></strong></br>
</p>
<ul>
<li><a href="/create-campaign.html">Create campaign</a></li>
<li><a href="/add-funds.html">Add funds</a></li>
</ul>
</article>
</body>
</html>