go-ethereum/rpc/api/net_js.go

20 lines
222 B
Go
Raw Normal View History

2015-06-08 07:50:11 -05:00
package api
const Net_JS = `
2015-06-10 02:42:14 -05:00
web3._extend({
2015-07-06 06:08:08 -05:00
property: 'net',
2015-06-08 07:50:11 -05:00
methods:
[
2015-06-10 02:42:14 -05:00
new web3._extend.Method({
2015-06-09 09:06:51 -05:00
name: 'addPeer',
call: 'net_addPeer',
params: 1,
2015-07-06 06:08:08 -05:00
inputFormatter: [null]
2015-06-08 07:50:11 -05:00
})
],
properties:
[
]
});
`