aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api/ssh_js.go
blob: c0591bd71d9df908d8a25a6500b4d2a868e57b19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package api

const Shh_JS = `
web3._extend({
    property: 'shh',
    methods:
    [

    ],
    properties:
    [
        new web3._extend.Property({
            name: 'version',
            getter: 'shh_version'
        })
    ]
});
`