aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api/net_js.go
blob: 2f872393c9f8a41e24b3aefbe37fc5bb5d0397d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package api

const Net_JS = `
web3._extend({
    property: 'net',
    methods:
    [
        new web3._extend.Method({
            name: 'addPeer',
            call: 'net_addPeer',
            params: 1,
            inputFormatter: [null]
        })
    ],
    properties:
    [
    ]
});
`