aboutsummaryrefslogtreecommitdiffstats
path: root/example/balance.html
blob: d70ea648b8805dfd977d2efe818b5b13205cfc90 (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
<!doctype>
<html>

<head>
<script type="text/javascript" src="js/es6-promise/promise.min.js"></script>
<script type="text/javascript" src="js/bignumber.js/bignumber.min.js"></script>
<script type="text/javascript" src="../dist/ethereum.js"></script>
<script type="text/javascript">
   
    var web3 = require('web3');
    web3.setProvider(new web3.providers.AutoProvider());

    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>
<body>
    <h1>coinbase balance</h1>
    <button type="button" onClick="watchBalance();">watch balance</button>
    <div></div>
    <div id="original"></div>
    <div id="current"></div>
    <div id="diff"></div>
</body>
</html>