aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api/net_js.go
blob: 1677d9fa6454fd970c447c653eb98a6b126331b5 (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
package api

const Net_JS = `
web3._extend({
    property: 'network',
    methods:
    [
        new web3._extend.Method({
            name: 'addPeer',
            call: 'net_addPeer',
            params: 1,
            inputFormatter: [web3._extend.utils.formatInputString],
            outputFormatter: web3._extend.formatters.formatOutputBool
        }),
        new web3._extend.Method({
            name: 'getPeerCount',
            call: 'net_peerCount',
            params: 0,
            inputFormatter: [],
            outputFormatter: web3._extend.formatters.formatOutputString
        })
    ],
    properties:
    [
        new web3._extend.Property({
            name: 'listening',
            getter: 'net_listening',
            outputFormatter: web3._extend.formatters.formatOutputBool
        }),
        new web3._extend.Property({
            name: 'peerCount',
            getter: 'net_peerCount',
            outputFormatter: web3._extend.utils.toDecimal
        }),
        new web3._extend.Property({
            name: 'peers',
            getter: 'net_peers',
            outputFormatter: function(obj) { return obj; }
        }),
        new web3._extend.Property({
            name: 'version',
            getter: 'net_version',
            outputFormatter: web3._extend.formatters.formatOutputString
        })
    ]
});
`