1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-16 04:24:56 +02:00
No description
Find a file
2023-05-08 17:07:01 +02:00
.github/workflows .github/workflows/test.yml: also test api module. 2023-04-25 17:02:50 +02:00
api api/message/types.go: remove ActionTrace.HexData 2023-05-08 17:07:01 +02:00
app api/message/types.go: remove ActionTrace.HexData 2023-05-08 17:07:01 +02:00
cmd/main cmd/main/main.go: sort import statements. 2023-05-03 13:19:49 +02:00
debian Adding debhelper scripts. 2023-04-30 15:30:17 +02:00
docs added a python example for the reader 2023-05-05 08:37:30 +02:00
scripts Change project name to "thalos" (working name). 2023-03-29 15:28:40 +02:00
.gitignore app/config/config.go: Move from json format to yaml. 2023-04-24 17:45:31 +02:00
config.example.yml app/config/config.go: add logging config 2023-05-03 13:15:16 +02:00
go.mod api/message/json/codec.go: fix timestamps, skip "Z" (always UTC) and use 3 decimals for milliseconds. 2023-05-05 09:20:35 +02:00
go.sum api/message/json/codec.go: fix timestamps, skip "Z" (always UTC) and use 3 decimals for milliseconds. 2023-05-05 09:20:35 +02:00
install.sh install.sh: fix config path 2023-04-26 12:12:22 +02:00
LICENSE Adding LICENSE file. 2023-01-05 17:09:55 +01:00
Makefile Makefile: Add install target 2023-04-28 18:31:39 +02:00
README.md Adding README.md 2023-04-26 12:30:59 +02:00

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:

$ make

or using go directly if you dont have make installed.

$ 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

$ ./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