aboutsummaryrefslogtreecommitdiffstats
path: root/mist/assets/util/test.html
blob: d458e66708cad1075e939a24ebc7f5b5f9c4a712 (plain) (blame)
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
<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>