go-ethereum/rpc/api/net_js.go

20 lines
222 B
Go
Raw Normal View History

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