net_js.go 222 B

12345678910111213141516171819
  1. package api
  2. const Net_JS = `
  3. web3._extend({
  4. property: 'net',
  5. methods:
  6. [
  7. new web3._extend.Method({
  8. name: 'addPeer',
  9. call: 'net_addPeer',
  10. params: 1,
  11. inputFormatter: [null]
  12. })
  13. ],
  14. properties:
  15. [
  16. ]
  17. });
  18. `