-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
104 lines (103 loc) · 5.58 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Cryptopia Donation Tracker</title>
<link rel="icon" href="favicon.png">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>
<script src="tracker.js"></script>
<style>
.exLink{
color: black;
}
.miningImg{
width: 24px;
}
.totalText{
font-size: 1.2em;
}
</style>
</head>
<body onLoad="start()" style="padding-top:2rem">
<div class="container">
<div class="text-center"><img class="text-center" src="logo.png" style="width: 60%;"></div>
<h1 class="text-center"> This campaign has ended and funds rolled over to Community Address Multi-sig wallet </h1>
<h3 class="text-center">Cryptopia Donation Tracker</h3>
<div class="row">
<p>This page tracks the progress of funding for Cryptopia. We only need 5 additional BTC to purchase the required DOT for listing. The other approximately 5 BTC we've received from an investor. (the 10 BTC donation) All balances update automatically, every 5 minutes.</p>
</div>
<div class="row">
<table class="table table-bordered">
<thead class="thead-dark">
<tr>
<th scope="col">Exchange</th>
<th scope="col">Currency</th>
<th scope="col">Address</th>
<th scope="col" colspan="3">Balance</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row" rowspan="6"><a href="https://www.cryptopia.co.nz/" target="_blank" class="exLink">Cryptopia</a></th>
<td>BTCZ</td>
<td>t1QPbt39fb4pzWXkNSM3qo6dWiL4ii42s48</td>
<td id="btczBalance2">0</td>
<td id="btczBalance2_toBtc">0</td>
<td><a href="https://equipool.1ds.us/workers/t1QPbt39fb4pzWXkNSM3qo6dWiL4ii42s48" target="_blank"><img class="miningImg" src="mining.png"></a></td>
</tr>
<tr>
<td>DOT</td>
<td>0x51653dff4aba308d76697bb35aa77b0d3a1783ab</td>
<td id="dotBalance1">0</td>
<td id="dotBalance1_toBtc">0</td>
<td></td>
</tr>
<tr>
<td>BTC</td>
<td>16WnYgKonXrkfQ5KcHzar4fM9fnU4acxJd</td>
<td id="btcBalance2">0</td>
<td id="btcBalance2_toBtc">0</td>
<td></td>
</tr>
<tr>
<td>LTC</td>
<td>LLn9pvryRDzuCS2anyrjg6JJ4k3YdsUcvS</td>
<td id="ltcBalance2">0</td>
<td id="ltcBalance2_toBtc">0</td>
<td></td>
</tr>
<tr>
<td>ETH</td>
<td>0xC66B6075293051faFDC40f18Bf1C265c353DAaA8</td>
<td id="ethBalance2">0</td>
<td id="ethBalance2_toBtc">0</td>
<td></td>
</tr>
<tr>
<td>ZEC</td>
<td>t1WkCDwJ3YKvYhewe84DbGRnQhnB7EvexxN</td>
<td id="zecBalance2">0</td>
<td id="zecBalance2_toBtc">0</td>
<td></td>
</tr>
<tr>
<td colspan="4" class="align-middle">
<div class="progress">
<div id="progressBar2" class="progress-bar" role="progressbar" style="width: 0%;" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</td>
<td id="totalBalance2" class="totalText">0</td>
<td id="progressPercent2">0%</td>
</tr>
</tbody>
</table>
</div>
<p id="statsTxt" class="text-center"></p>
<p class="text-center">made by <a href="https://github.com/hodler95" target="_blank">hodler95 & cryptorex</a></p>
<p class="text-center">stored by BitcoinZ Community at<a href="https://github.com/bitcoinz-sites/cryptopiatracker" target="_blank"> Community GitHub</a></p>
</div>
</body>
</html>