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