Official Go implementation of the Ethereum protocol
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-ethereum/index.html

41 lines
1.0 KiB

10 years ago
<!doctype>
<html>
<head>
10 years ago
<script type="text/javascript" src="es6-promise-2.0.0.js"></script>
<script type="text/javascript" src="main.js"></script>
<script type="text/javascript" src="websocket.js"></script>
<script type="text/javascript" src="qt.js"></script>
<script type="text/javascript" src="httprpc.js"></script>
10 years ago
<script type="text/javascript">
10 years ago
if (window.Promise === undefined) {
window.Promise = ES6Promise.Promise;
}
//web3.setProvider(new web3.providers.QtProvider());
web3.setProvider(new web3.providers.HttpRpcProvider("http://localhost:8080"));
function testSnippet() {
web3.eth.watch({altered: web3.eth.coinbase}).changed(function() {
web3.eth.balanceAt(web3.eth.coinbase).then(function (balance) {
document.getElementById("result").innerText = web3.toDecimal(balance);
});
10 years ago
});
}
10 years ago
10 years ago
</script>
</head>
<body>
<h1>std::name_reg</h1>
<input type="text" id="name"></input>
10 years ago
<button type="button" onClick="testSnippet();">test snippet</button>
<div></div>
result: <div id="result"></div>
10 years ago
</body>
</html>