Andrea Maria Piana 695bdfb61c
Rename Contact -> chats and remove histories (#116)
This commit renames contacts -> chats and remove histories.

I have also collapsed the migrations for now so it's not backward
compatible, but while in heavy development is probably best just to keep
a single migration.
2019-07-10 20:58:28 +02:00
2019-06-14 22:25:02 +02:00
2019-06-14 22:25:02 +02:00
2019-02-11 13:48:44 +01:00
2019-02-11 13:48:44 +01:00
2019-05-15 13:19:39 +03:00
2019-03-25 11:01:42 +01:00
2019-01-08 21:02:11 +01:00
2019-01-08 21:02:11 +01:00
2019-03-25 11:01:42 +01:00

Status Console User Interface

This is not an official Status client. It should be used exclusively for development purposes.

The main motivation for writing this client is to have a second implementation of the messaging protocol in order to run protocol compatibility smoke tests. It will also allow us to iterate faster and test some approaches as eventually we want to move the whole messaging protocol details to status-go.

At the same time, it's more powerful than relying on Status Node JSON-RPC commands because it has direct access to the p2p server and the Whisper service.

Start

# build a binary
$ make build

# generate a private key
$ ./bin/status-term-client -create-key-pair
Your private key: <KEY>

# start
$ ./bin/status-term-client -keyhex=<KEY> -installation-id=any-string -data-dir=your-data-dir

# or start and redirect logs
$ ./bin/status-term-client -keyhex=<KEY> 2>/tmp/status-term-client.log

# more options
$ ./bin/status-term-client -h

Commands

Commands starts with / and must be typed in the INPUT view in the UI.

Currently the following commands are supported.

Adding a public chat

/contact add <topic>

Adding a contact

/contact add <public-key> <name>

License

Mozilla Public License 2.0

Description
Status messaging console user interface
Readme
Languages
Go 93.9%
Makefile 4.6%
Dockerfile 1.5%