go-ethereum/rpc/api/ssh_js.go

19 lines
186 B
Go
Raw Normal View History

2015-06-10 13:35:12 +03:00
package api
const Shh_JS = `
web3._extend({
property: 'shh',
methods:
[
2015-07-06 14:08:08 +03:00
2015-06-10 13:35:12 +03:00
],
properties:
[
new web3._extend.Property({
name: 'version',
2015-07-06 14:08:08 +03:00
getter: 'shh_version'
2015-06-10 13:35:12 +03:00
})
]
});
`