mirror of https://github.com/status-im/web3.js.git
Add join/leave methods
This commit is contained in:
parent
5fd0b24fd1
commit
35bca89c19
|
@ -5859,6 +5859,18 @@ var methods = function () {
|
|||
call: 'shhext_sendGroupMessage',
|
||||
params: 1,
|
||||
inputFormatter: [null]
|
||||
}),
|
||||
new Method({
|
||||
name: 'joinPublicChats',
|
||||
call: 'shhext_joinPublicChats',
|
||||
params: 1,
|
||||
inputFormatter: [null]
|
||||
}),
|
||||
new Method({
|
||||
name: 'leavePublicChats',
|
||||
call: 'shhext_leavePublicChats',
|
||||
params: 1,
|
||||
inputFormatter: [null]
|
||||
})
|
||||
];
|
||||
};
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -5859,6 +5859,18 @@ var methods = function () {
|
|||
call: 'shhext_sendGroupMessage',
|
||||
params: 1,
|
||||
inputFormatter: [null]
|
||||
}),
|
||||
new Method({
|
||||
name: 'joinPublicChats',
|
||||
call: 'shhext_joinPublicChats',
|
||||
params: 1,
|
||||
inputFormatter: [null]
|
||||
}),
|
||||
new Method({
|
||||
name: 'leavePublicChats',
|
||||
call: 'shhext_leavePublicChats',
|
||||
params: 1,
|
||||
inputFormatter: [null]
|
||||
})
|
||||
];
|
||||
};
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -176,6 +176,18 @@ var methods = function () {
|
|||
call: 'shhext_sendGroupMessage',
|
||||
params: 1,
|
||||
inputFormatter: [null]
|
||||
}),
|
||||
new Method({
|
||||
name: 'joinPublicChats',
|
||||
call: 'shhext_joinPublicChats',
|
||||
params: 1,
|
||||
inputFormatter: [null]
|
||||
}),
|
||||
new Method({
|
||||
name: 'leavePublicChats',
|
||||
call: 'shhext_leavePublicChats',
|
||||
params: 1,
|
||||
inputFormatter: [null]
|
||||
})
|
||||
];
|
||||
};
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
"coveralls": "^2.11.2",
|
||||
"del": ">=2.0.2",
|
||||
"exorcist": "^0.4.0",
|
||||
"gulp": ">=3.9.0",
|
||||
"gulp": "^3.9.0",
|
||||
"gulp-jshint": ">=1.5.0",
|
||||
"gulp-rename": ">=1.2.0",
|
||||
"gulp-replace": "^0.5.3",
|
||||
|
|
Loading…
Reference in New Issue