Planetarium
Software by Tessellated // tessellated.io
Planetarium is a small server for the Cosmos Chain Registry and EcoStake Validator Registry.
Planetarium is aimed to be simple, easy to deploy, and manage updates. Tessellated provides a hosted implementation of this API, which you can find at planetarium.tessellated.io.
Planetarium has two namespaces:
/v1/chains
: For information from the chain registry/v1/validators
: For information from the validator registry
In most cases, the existing file structure of the validator and chain registry are provided as-is. For instance, to find cosmoshub/chain.json
you would simply curl planetarium.services.tessellated.io/v1/chains/cosmoshub/chain.json
. Likewise, to find tessellated/profile.json
from the validator registry: curl planetarium.services.tessellated.io/v1/validators/tessellated/profile.json
.
These additional routes are provided for convenience:
/v1/chains/all
: List all chains
It's easy to install or self host Planetarium.
$ git clone https://github.com/tessellated-io/planetarium # (Use --recursive if you want to pull chain-registry and validator-registry which are defined as submodules).
$ make install
$ planetarium --help
Rather than provide an opaque or configurable update strategy, Planetarium simply pulls static data from your disk and hosts it. At runtime, you specify the directories, and thus can configure it to update however you want (manually, via a cron job, etc).
NOTE: A side effect is that anything inside of your chain and validator registry folders is hosted. Be sure to not inadvertently expose sensitive data.
You'll need to clone the Chain and Validator registry:
$ git clone https://github.com/cosmos/chain-registry /home/user/chain-registry
$ git clone https://github.com/eco-stake/validator-registry /home/user/validator-registry
$ planetarium start --chain-registry-directory /home/user/chain-registry/ -validator-registry-directory /home/user/validator-registry/ --port 8080
Simply git pull any updates, though you will likely want to run this on a cron job or similar
$ cd /home/user/chain-registry && git pull
$ cd /home/user/validator-registry && git pull