mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-29 23:00:33 +00:00
85 lines
1.8 KiB
PHP
85 lines
1.8 KiB
PHP
<?php
|
|
|
|
$this->pageTitle = $coin->name." bloc explorer";
|
|
|
|
if ($coin) echo <<<ENDJS
|
|
<script>
|
|
$(function() {
|
|
$('#favicon').remove();
|
|
$('head').append('<link href="{$coin->image}" id="favicon" rel="shortcut icon">');
|
|
});
|
|
</script>
|
|
ENDJS;
|
|
|
|
$remote = new Bitcoin($coin->rpcuser, $coin->rpcpasswd, $coin->rpchost, $coin->rpcport);
|
|
|
|
echo "<table class='dataGrid2'>";
|
|
|
|
echo "<thead>";
|
|
echo "<tr>";
|
|
echo "<th>Transaction Hash</th>";
|
|
echo "<th>Value</th>";
|
|
echo "<th>From (amount)</th>";
|
|
echo "<th>To (amount)</th>";
|
|
echo "</tr>";
|
|
echo "</thead>";
|
|
|
|
$tx = $remote->getrawtransaction($txhash, 1);
|
|
if(!$tx) continue;
|
|
|
|
$valuetx = 0;
|
|
foreach($tx['vout'] as $vout)
|
|
$valuetx += $vout['value'];
|
|
|
|
echo "<tr class='ssrow'>";
|
|
|
|
echo "<td><span style='font-family: monospace;'><a href='/explorer?id=$coin->id&txid={$tx['txid']}'>{$tx['txid']}</a></span></td>";
|
|
echo "<td>$valuetx</td>";
|
|
|
|
echo "<td>";
|
|
foreach($tx['vin'] as $vin)
|
|
{
|
|
if(isset($vin['coinbase']))
|
|
echo "Generation";
|
|
|
|
}
|
|
echo "</td>";
|
|
|
|
echo "<td>";
|
|
foreach($tx['vout'] as $vout)
|
|
{
|
|
$value = $vout['value'];
|
|
|
|
if(isset($vout['scriptPubKey']['addresses'][0]))
|
|
echo "<span style='font-family: monospace;'>{$vout['scriptPubKey']['addresses'][0]}</span> ($value)";
|
|
else
|
|
echo "($value)";
|
|
|
|
echo '<br>';
|
|
}
|
|
echo "</td>";
|
|
|
|
echo "</tr>";
|
|
|
|
echo "</table>";
|
|
|
|
echo <<<end
|
|
<form action="/explorer" method="get" style="padding: 10px;">
|
|
<input type="hidden" name="id" value="$coin->id">
|
|
<input type="text" name="height" class="main-text-input" placeholder="block height" style="width: 80px;">
|
|
<input type="text" name="txid" class="main-text-input" placeholder="tx hash" style="width: 450px;">
|
|
<input type="submit" value="Search" class="main-submit-button" >
|
|
</form>
|
|
end;
|
|
|
|
echo '<br><br><br><br><br><br><br><br><br><br>';
|
|
echo '<br><br><br><br><br><br><br><br><br><br>';
|
|
echo '<br><br><br><br><br><br><br><br><br><br>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|