Skip to content

Commit

Permalink
improved example
Browse files Browse the repository at this point in the history
  • Loading branch information
debris committed Nov 13, 2014
1 parent b142855 commit 8aaec1d
Showing 1 changed file with 22 additions and 18 deletions.
40 changes: 22 additions & 18 deletions example/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,34 +4,38 @@
<head>
<script type="text/javascript" src="js/es6-promise/promise.min.js"></script>
<script type="text/javascript" src="../dist/ethereum.js"></script>

<script type="text/javascript">
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;
function watchBalance() {
var coinbase = web3.eth.coinbase;
var originalBalance = 0;

web3.eth.balanceAt(coinbase).then(function (balance) {
originalBalance = web3.toDecimal(balance);
document.getElementById('original').innerText = 'original balance: ' + originalBalance + ' watching...';
});

web3.eth.watch({altered: coinbase}).changed(function() {
web3.eth.balanceAt(coinbase).then(function (balance) {
var currentBalance = web3.toDecimal(balance);
document.getElementById("current").innerText = 'current: ' + currentBalance;
document.getElementById("diff").innerText = 'diff: ' + (currentBalance - originalBalance);
});
});
}
</script>
</head>

</script>
</head>
<body>
<h1>std::name_reg</h1>
<input type="text" id="name"></input>
<button type="button" onClick="testSnippet();">test snippet</button>
<h1>balance</h1>
<button type="button" onClick="watchBalance();">watch balance</button>
<div></div>
result:
<div id="result"></div>
<div id="original"></div>
<div id="current"></div>
<div id="diff"></div>
</body>
</html>

0 comments on commit 8aaec1d

Please sign in to comment.