diff options
author | obscuren <geffobscura@gmail.com> | 2015-06-20 20:37:00 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-06-20 20:37:00 +0800 |
commit | 42a14b8a09d812dbd7d1b05f145e6881376f320b (patch) | |
tree | c3e2ca55a7b67bce4558cdae3ac395568538d76a /cmd/mist/assets/html | |
parent | e4f9ec886b498c5744633a4db1c735eec11dc71b (diff) | |
download | dexon-42a14b8a09d812dbd7d1b05f145e6881376f320b.tar.gz dexon-42a14b8a09d812dbd7d1b05f145e6881376f320b.tar.zst dexon-42a14b8a09d812dbd7d1b05f145e6881376f320b.zip |
mist: R.I.P.
/"""""/""""""".
/ / \ __
/ / \ ||
/____ / \ ||
| | In Loving | ||
| | Memory | ||
| | | ||
| | 2014-2015 | ||
| | * * * * | _||_
| | *\/* *\/* | | TT |
| | *_\_ / ...""""""| || |.""...."""""""".""
| | \/.."""""..."""\ || /.""".......""""...
| |...."""""""........""""""^^^^"......."""""""".."
|......"""""""""""""""........"""""...."""""..""-Jeff W.
Diffstat (limited to 'cmd/mist/assets/html')
-rw-r--r-- | cmd/mist/assets/html/home.html | 83 | ||||
-rw-r--r-- | cmd/mist/assets/html/logo.png | bin | 12767 -> 0 bytes |
2 files changed, 0 insertions, 83 deletions
diff --git a/cmd/mist/assets/html/home.html b/cmd/mist/assets/html/home.html deleted file mode 100644 index dc96cc754..000000000 --- a/cmd/mist/assets/html/home.html +++ /dev/null @@ -1,83 +0,0 @@ -<!doctype> -<html> -<head> -<title>Ethereum</title> -<script type="text/javascript" src="../ext/bignumber.min.js"></script> -<script type="text/javascript" src="../ext/ethereum.js/dist/ethereum.js"></script> -<style type="text/css"> - body { - font-family: Helvetica; - } - div.logo { - width: 192px; - margin: 40px auto; - } -</style> -</head> -<body> - <div class="logo"><img src="logo.png"></img></div> - <h1>Info</h1> - - <table width="100%"> - <tr> - <td>Block number</td> - <td id="number"></td> - </tr> - - <tr> - <td>Peer count</td> - <td id="peer_count"></td> - </tr> - - <tr> - <td>Accounts</td> - <td id="accounts"></td> - </tr> - - <tr> - <td>Gas price</td> - <td id="gas_price"></td> - </tr> - - <tr> - <td>Mining</td> - <td id="mining"></td> - </tr> - - <tr> - <td>Listening</td> - <td id="listening"></td> - </tr> - - <tr> - <td>Coinbase</td> - <td id="coinbase"></td> - </tr> - </table> -</body> - -<script type="text/javascript"> - var web3 = require('web3'); - var eth = web3.eth; - - web3.setProvider(new web3.providers.HttpSyncProvider('http://localhost:8545')); - - document.querySelector("#number").innerHTML = eth.number; - document.querySelector("#coinbase").innerHTML = eth.coinbase - document.querySelector("#peer_count").innerHTML = eth.peerCount; - document.querySelector("#accounts").innerHTML = eth.accounts; - document.querySelector("#gas_price").innerHTML = eth.gasPrice; - document.querySelector("#mining").innerHTML = eth.mining; - document.querySelector("#listening").innerHTML = eth.listening; - - eth.watch('pending').changed(function() { - console.log("pending changed"); - }); - eth.watch('chain').changed(function() { - document.querySelector("#number").innerHTML = eth.number; - }); - -</script> - -</html> - diff --git a/cmd/mist/assets/html/logo.png b/cmd/mist/assets/html/logo.png Binary files differdeleted file mode 100644 index 28dc9f509..000000000 --- a/cmd/mist/assets/html/logo.png +++ /dev/null |