go-ethereum/rpc/api/ssh_js.go

19 lines
186 B
Go
Raw Normal View History

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