-
Notifications
You must be signed in to change notification settings - Fork 11
/
listtransactions.php
executable file
·85 lines (84 loc) · 3.49 KB
/
listtransactions.php
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
<?php
include("header.php");
include("pass.php");
$trans = $coin->listtransactions('*', 9999999);
$x = array_reverse($trans);
?>
<p><b>Full Transaction History:</b></p>
<div class="panel panel-default">
<div class="table-responsive">
<?php
echo "<table class='table-hover table-condensed table-bordered table'>
<thead><tr><th>Method</th><th>Address</th><th>Account</th><th>Amount</th><th>Confirmations</th><th>Time</th><th>Txid</th><th>Comment</th></tr></thead>";
foreach ($x as $x) {
$txid = "{$x['txid']}";
$commentFile = "/home/stakebox/UI/".$currentWallet.$txid."comment.php";
if ($x['amount'] > 0) {
$coloramount = "green";
}
else {
$coloramount = "red";
}
if ($x['confirmations'] >= 6) {
$colorconfirms = "green";
}
else {
$colorconfirms = "red";
}
if($x['category'] == generate && $currentWallet == HYPER){
$getTransaction = $coin->gettransaction($x['txid']);
$fee = array_reverse($getTransaction);
$amount = $fee['fee'];
$x['amount'] = $amount;
$y = array_reverse($fee['vout']);
$z = array_reverse($y[0]);
$q = array_reverse($z['scriptPubKey']);
$f = array_reverse($q['addresses']);
$address = array_reverse($z['0']);
$x['address'] = $f[0];
}
$date = date('D M j y g:i a', $x['time']);
echo "<tr>";
echo "<td>" . ucfirst($x['category']) . "</td>";
if ($x['comment'] != "") {
echo "<td>{$x['address']}</td>
<td><div style='width:60px;overflow:hidden'>{$x['account']}</div></td>
<td><div style='width:70px;overflow:hidden'><font color='{$coloramount}'>{$x['amount']}</font></div></td>
<td><div style='width:110px;overflow:hidden'><font color='{$colorconfirms}'>{$x['confirmations']}</font></div></td>
<td>{$date}</td>
<td><div style='width:120px;overflow:hidden'>{$x['txid']}</div></td>
<td><div style='width:140px;overflow:hidden'>$comment</div></td>
</tr>";
}
elseif(file_exists($commentFile)){
include("$commentFile");
echo "<td>{$x['address']}</td>
<td><div style='width:60px;overflow:hidden'>{$x['account']}</div></td>
<td><div style='width:70px;overflow:hidden'><font color='{$coloramount}'>{$x['amount']}</font></div></td>
<td><div style='width:110px;overflow:hidden'><font color='{$colorconfirms}'>{$x['confirmations']}</font></div></td>
<td>{$date}</td>
<td><div style='width:120px;overflow:hidden'>{$x['txid']}</div></td>
<td>$comment</td>
</tr>";
}
else {
echo "<td>{$x['address']}</td>
<td><div style='width:60px;overflow:hidden'>{$x['account']}</div></td>
<td><div style='width:70px;overflow:hidden'><font color='{$coloramount}'>{$x['amount']}</font></div></td>
<td><div style='width:110px;overflow:hidden'><font color='{$colorconfirms}'>{$x['confirmations']}</font></div></td>
<td>{$date}</td>
<td><div style='width:120px;overflow:hidden'>{$x['txid']}</div></td>
<td>
<form action='comment' method='POST'><input type='hidden'>
<button class='btn btn-default btn-block ' type='submit' name='txid' value={$x['txid']}>Add Comment</button>
</form>
</td>
</tr>";
}
}
echo "</table>";
?>
</div>
</div>
</div>
<?php include("footer.php"); ?>