status-go/services/shhext
2020-01-06 10:17:23 +01:00
..
mailservers Use goimports instead of gofmt 2020-01-06 10:17:23 +01:00
api.go remove reSelectAccount from backend, SelectKeyPair and SelectedKeyPairID methods from Whisper 2019-12-30 12:56:05 +01:00
api_test.go Create a home submodule for Eth node bridges- Rename StatusBackend to GethStatusBackend 2019-11-27 17:02:09 +01:00
context.go Execute writes atomically only after request was processed without errors (#1454) 2019-05-06 09:33:19 +03:00
history.go Use goimports instead of gofmt 2020-01-06 10:17:23 +01:00
history_test.go Use goimports instead of gofmt 2020-01-06 10:17:23 +01:00
mailrequests.go Use goimports instead of gofmt 2020-01-06 10:17:23 +01:00
mailrequests_test.go Use goimports instead of gofmt 2020-01-06 10:17:23 +01:00
README.md Implement mailserver canary service. Closes #1086 2018-08-07 17:17:59 +02:00
requests.go Create a home submodule for Eth node bridges- Rename StatusBackend to GethStatusBackend 2019-11-27 17:02:09 +01:00
requests_test.go Use goimports instead of gofmt 2020-01-06 10:17:23 +01:00
rpc.go Use goimports instead of gofmt 2020-01-06 10:17:23 +01:00
service.go Use goimports instead of gofmt 2020-01-06 10:17:23 +01:00
service_test.go Use goimports instead of gofmt 2020-01-06 10:17:23 +01:00
signal.go Move to protobuf for Message type (#1706) 2019-12-05 17:25:34 +01:00

Whisper API Extension

API

shhext_getNewFilterMessages

Accepts the same input as shh_getFilterMessages.

Returns

Returns a list of whisper messages matching the specified filter. Filters out the messages already confirmed received by shhext_confirmMessagesProcessed

Deduplication is made using the whisper envelope content and topic only, so the same content received in different whisper envelopes will be deduplicated.

shhext_confirmMessagesProcessed

Confirms whisper messages received and processed on the client side. These messages won't appear anymore when shhext_getNewFilterMessages is called.

Parameters

Gets a list of whisper envelopes.

shhext_post

Accepts same input as shh_post.

Returns

DATA, 32 Bytes - the envelope hash

shhext_requestMessages

Sends a request for historic messages to a mail server.

Parameters
  1. Object - The message request object:
  • mailServerPeer:URL - Mail servers' enode addess
  • from:QUANTITY - (optional) Lower bound of time range as unix timestamp, default is 24 hours back from now
  • to:QUANTITY- (optional) Upper bound of time range as unix timestamp, default is now
  • topic:DATA, 4 Bytes - Regular whisper topic
  • symKeyID:DATA- ID of a symmetric key to authenticate to mail server, derived from mail server password
Returns

Boolean - returns true if the request was send, otherwise false.

Signals

Sends sent signal once per envelope.

{
  "type": "envelope.sent",
  "event": {
    "hash": "0xea0b93079ed32588628f1cabbbb5ed9e4d50b7571064c2962c3853972db67790"
  }
}

Sends expired signal if envelope dropped from whisper local queue before it was sent to any peer on the network.

{
  "type": "envelope.expired",
  "event": {
    "hash": "0x754f4c12dccb14886f791abfeb77ffb86330d03d5a4ba6f37a8c21281988b69e"
  }
}