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-15 15:32:53 +02:00
.github/workflows Adding .github/workflows/release.yml 2023-05-15 08:55:50 +02:00
api api/message/types.go: Change ActionTrace.Data from []byte to interface{} 2023-05-09 16:46:12 +02:00
app app/ship_processor.go: Update abi from action traces. 2023-05-12 09:21:19 +02:00
cmd/thalos cmd/thalos/main.go: implement exponential backoff algorithm in reconnect logic 2023-05-15 15:17:20 +02:00
debian debian/changelog: Set date for 0.1.0 2023-05-14 18:18:02 +02:00
docs added a python example for the reader 2023-05-05 08:37:30 +02:00
scripts scripts/stop.sh: typo fix. 2023-05-14 17:27:50 +02:00
.gitignore gitignore: ignore .pc directory 2023-05-14 18:16:18 +02:00
config.example.yml config.example.yml: comment out telegram section 2023-05-14 18:16:01 +02:00
go.mod cmd/thalos/main.go: implement exponential backoff algorithm in reconnect logic 2023-05-15 15:17:20 +02:00
go.sum cmd/thalos/main.go: implement exponential backoff algorithm in reconnect logic 2023-05-15 15:17:20 +02:00
install.sh install.sh: Use Makefile to install stuff. 2023-05-14 18:09:39 +02:00
LICENSE Adding LICENSE file. 2023-01-05 17:09:55 +01:00
Makefile Makefile: skip --buildmode=pie flag in GOBUILDFLAGS 2023-05-15 07:47:49 +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