mirror of
https://github.com/status-im/status-console-client.git
synced 2025-02-24 08:38:15 +00:00
Stateless messenger Replace original messenger with stateless messenger Add benchmark for loading messages Add new message event after msg was persisted Request history chat by chat otherwise it doesn't worko Db and stream tests Move flag parsing higher Fix linter and test
protocol
It contains the Status protocol implementation in Go.
It is divided into three packages:
adapters
contains a code that allows sending and receiving Status protocol messages through the Whisper network,client
contains high-level abstraction over the protocol which includes handling contacts and messages,v1
is the current protocol low-level implementation which includes things like encoding and decoding a message payload as well asChat
interface that should be implemented by adapters.