-
Notifications
You must be signed in to change notification settings - Fork 20.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Maran
committed
May 13, 2014
1 parent
54eff2d
commit ee2cef3
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<html> | ||
<head> | ||
<title>Utils</title> | ||
</head> | ||
<body onload="init();"> | ||
<label>Nonce for 2ef47100e0787b915105fd5e3f4ff6752079d5cb</label> | ||
<p id="nonce"></p> | ||
|
||
<label>Connected peers</label> | ||
<p id="peers"></p> | ||
|
||
<label>Is mining</label> | ||
<p id="isMining"></p> | ||
|
||
<label>Is listening</label> | ||
<p id="isListen"></p> | ||
|
||
<label>Coinbase</label> | ||
<p id="coinbase"></p> | ||
|
||
<script type="text/javascript"> | ||
|
||
function init() { | ||
eth.getTxCountAt("2ef47100e0787b915105fd5e3f4ff6752079d5cb", function(nonce){ | ||
document.querySelector("#nonce").innerHTML = nonce; | ||
}) | ||
eth.getPeerCount(function(peerLength){ | ||
document.querySelector("#peers").innerHTML = peerLength; | ||
}) | ||
eth.getIsMining(function(mining){ | ||
document.querySelector("#isMining").innerHTML = mining; | ||
}) | ||
eth.getIsListening(function(listen){ | ||
document.querySelector("#isListen").innerHTML = listen; | ||
}) | ||
eth.getCoinBase(function(address){ | ||
document.querySelector("#coinbase").innerHTML = address; | ||
}) | ||
} | ||
</script> | ||
</body> | ||
</html> | ||
|