Juno is a Cosmos Hub blockchain data aggregator and exporter that provides the ability for developers and clients to query for indexed chain data.
This version of Juno is a fork of FissionLabs's Juno.
The main reason behind the fork what to improve the original project by:
- allowing different databases types as data storage spaces;
- creating a highly modular code that allows for easy customization.
We achieved the first objective by supporting both PostgreSQL and MongoDB. We also reviewed the code design by using a database interface so that you can implement whatever database backend you prefer most.
On the other hand, to achieve a highly modular code, we implemented extension points through the worker.RegisterBlockHandler
, worker.RegisterTxHandler
and worker.RegisterMsgHandler
methods. You can use those to extend the default working of the code (which simply parses and saves the data on the database) with whatever operation you want.
Since the Cosmos SDK has evolved a lot, we have different versions of Juno available.
Cosmos SDK Version | Juno branch |
---|---|
v0.37.x |
cosmos-v0.37.x |
v0.38.x |
cosmos-v0.38.x |
v0.39.x |
cosmos-v0.39.x |
Stargate ( v0.40.x , v0.41.x , v0.42.x ) |
cosmos-v0.40.x |
v0.43.x , v0.44.x , v0.45.1 |
cosmos-v0.44.x |
> v0.45.1 |
cosmos-v0.45.x |
To know how to setup and run Juno, please refer to the docs folder.
If you want to test the code, you can do so by running
$ make test-unit
Note: Requires Docker.
This will:
- Create a Docker container running a PostgreSQL database.
- Run all the tests using that database as support.
If you want to know how to run a GraphQL server that allows to expose the parsed data, please refer to the following guides:
Contributions are welcome! Please open an Issues or Pull Request for any changes.