mirror of
https://github.com/eosswedenorg/thalos
synced 2026-07-04 12:03:41 +02:00
Adding README.md
This commit is contained in:
parent
8798428b62
commit
dd562b4231
1 changed files with 44 additions and 0 deletions
44
README.md
Normal file
44
README.md
Normal file
|
|
@ -0,0 +1,44 @@
|
||||||
|
# Thalos
|
||||||
|
|
||||||
|
Thalos is a application that makes it easy for users to stream blockchain data from an Antelope SHIP node.
|
||||||
|
|
||||||
|
It handles all the technical stuff for you:
|
||||||
|
|
||||||
|
* Decoding of antelope's binary format.
|
||||||
|
* Websocket connection (with reconnection)
|
||||||
|
* Decoding of action data according to contract ABI
|
||||||
|
|
||||||
|
And then sends the data over redis in plain json (or other popular formats if you want!)
|
||||||
|
|
||||||
|
## Compiling
|
||||||
|
|
||||||
|
You will need golang version `1.18` or later to compile the source.
|
||||||
|
|
||||||
|
Compile using make:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
$ make
|
||||||
|
```
|
||||||
|
|
||||||
|
or using go directly if you dont have make installed.
|
||||||
|
|
||||||
|
```shell
|
||||||
|
$ go build -o build/thalos-server cmd/main/main.go
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
After compiling the binary, you can install it along with basic config file and start/stop scripts using `install.sh`
|
||||||
|
|
||||||
|
```shell
|
||||||
|
$ ./install.sh /path/to/your/directory/of/choice
|
||||||
|
```
|
||||||
|
|
||||||
|
## Runtime dependencies
|
||||||
|
|
||||||
|
Make sure `redis` is installed as thalos uses it for both cache and message broker.
|
||||||
|
|
||||||
|
## Author
|
||||||
|
|
||||||
|
Henrik Hautakoski - [henrik@eossweden.org](mailto:henrik@eossweden.org)
|
||||||
Loading…
Add table
Add a link
Reference in a new issue