aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/ext/test.html
blob: 0d6b710fa14c74af9cad76407677741d98b64825 (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
<!doctype>
<html>
<head>
<title>Tests</title>
</head>

<body>
<button onclick="test();">Test me</button>

<script type="text/javascript">
function test() {
    var filter = eth.watch({
        latest: -1,
        from: "e6716f9544a56c530d868e4bfbacb172315bdead",
    });

    filter.changed(function(messages) {
        console.log("messages", messages)
    })

    filter.getMessages(function(messages) {
            console.log("getMessages", messages)
            });

    eth.getEachStorageAt("9ef0f0d81e040012600b0c1abdef7c48f720f88a", function(a, b) {
            console.log(a,b)
    })
}
</script>

</body>

</html>