Add join/leave methods

This commit is contained in:
Andrea Maria Piana 2018-12-28 13:47:23 +01:00
parent 5fd0b24fd1
commit 35bca89c19
No known key found for this signature in database
GPG Key ID: AA6CCA6DE0E06424
7 changed files with 41 additions and 5 deletions

12
dist/web3-light.js vendored
View File

@ -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

12
dist/web3.js vendored
View File

@ -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]
})
];
};

4
dist/web3.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/web3.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -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]
})
];
};

View File

@ -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",