plugeth/example/index.html

38 lines
1012 B
HTML
Raw Normal View History

2014-09-30 20:51:53 +00:00
<!doctype>
<html>
<head>
<script type="text/javascript" src="js/es6-promise/promise.min.js"></script>
<script type="text/javascript" src="../dist/ethereum.js"></script>
2014-09-30 20:51:53 +00:00
<script type="text/javascript">
2014-11-13 03:21:51 +00:00
if (window.Promise === undefined) {
window.Promise = ES6Promise.Promise;
}
var web3 = require('web3');
web3.setProvider(new web3.providers.AutoProvider());
function testSnippet() {
web3.eth.watch({altered: web3.eth.coinbase}).changed(function() {
web3.eth.balanceAt(web3.eth.coinbase).then(function (balance) {
console.log(parseInt(balance,16));
console.log(typeof balance);
document.getElementById("result").innerText = +balance;
});
2014-11-03 16:46:56 +00:00
});
2014-11-13 03:21:51 +00:00
}
</script>
2014-09-30 20:51:53 +00:00
</head>
<body>
2014-11-13 03:21:51 +00:00
<h1>std::name_reg</h1>
<input type="text" id="name"></input>
<button type="button" onClick="testSnippet();">test snippet</button>
<div></div>
result:
<div id="result"></div>
2014-09-30 20:51:53 +00:00
</body>
</html>
2014-11-13 03:21:51 +00:00