mirror of
https://github.com/status-im/status-console-client.git
synced 2025-02-24 00:28:18 +00:00
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.
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
Description
Languages
Go
93.9%
Makefile
4.6%
Dockerfile
1.5%