DataGate

Intro

TODO Indexer is an app to read the blockchain data from your game. It's launched on your server and serves as a microservice that stores all the necessary blockchain data. It uses MongoDB and has all the indexes needed - so you can expose its API to internet and connect your game clients to it directly. (You need to decide how to control access to API to avoid DDOS). You DO NOT NEED to copy blockchain data from indexer to your own database - read it directly from the Indexer' API instead.

How indexer works

TODO Indexer has a WS permanent connection to the blockchain node. On every change in the blockchain - it fetches needed data and stores it in its own database MongoDB. Then it provides API for the games to read the data.

Detailed docs

TODO link to the detailed docs in the GitHub repo

Last updated