aboutsummaryrefslogtreecommitdiffstats
path: root/example/event_inc.html
blob: 17df9d6815b5cac6c90d256d6317fc50c9da276c (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype>
<html>
    <head>
    <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.HttpSyncProvider('http://localhost:8080'));

        var source = "" + 
        "contract Contract { " +
        "   event Incremented(bool indexed odd, uint x); " +
        "   function Contract() { " +
        "        x = 69; " +
        "    } " +
        "    function inc() { " +
        "        ++x; " +
        "        Incremented(x % 2 == 1, x); " +
        "    } " +
        "    uint x; " +
        "}";

        var desc = [{
            "type":"event",
            "name":"Incremented",
            "inputs": [{"name":"odd","type":"bool","indexed":true},{"name":"x","type":"uint","indexed":false}],
        }, {
            "type":"function",
            "name":"inc",
            "inputs": [],
            "outputs": []
        }];

        var address;
        var contract;

        var update = function (x) {
            document.getElementById('result').innerText = JSON.stringify(x);
        };
    
        var createContract = function () {
            address = web3.eth.transact({code: web3.eth.solidity(source)});
            contract = web3.eth.contract(address, desc); 
            contract.Incremented({odd: true}).changed(update);
            
        };

        var callContract = function () {
            contract.call().inc();
        };


    </script>
    </head>

    <body>
        <div>
            <button type="button" onClick="createContract();">create contract</button>
        </div>
        <div>
            <button type="button" onClick="callContract();">test1</button>
        </div>
        <div id="result">
        </div>
    </body>
</html>