https://github.com/nymtech/bdjuno
A fork of https://github.com/forbole/bdjuno for the Nyx blockchain
https://github.com/nymtech/bdjuno
Last synced: 3 months ago
JSON representation
A fork of https://github.com/forbole/bdjuno for the Nyx blockchain
- Host: GitHub
- URL: https://github.com/nymtech/bdjuno
- Owner: nymtech
- License: mit
- Created: 2022-10-19T11:15:55.000Z (over 2 years ago)
- Default Branch: chains/nyx/mainnet
- Last Pushed: 2025-03-06T13:21:25.000Z (4 months ago)
- Last Synced: 2025-04-02T06:09:47.453Z (3 months ago)
- Language: Go
- Size: 3.64 MB
- Stars: 78
- Watchers: 5
- Forks: 15
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Callisto
[](https://github.com/forbole/callisto/actions?query=workflow%3ATests)
[](https://goreportcard.com/report/github.com/forbole/callisto)
Callisto (formerly BDJuno) is the [Juno](https://github.com/forbole/juno) implementation
for [Big Dipper](https://github.com/forbole/big-dipper).It extends the custom Juno behavior by adding different handlers and custom operations to make it easier for Big Dipper
showing the data inside the UI.All the chains' data that are queried from the RPC and gRPC endpoints are stored inside
a [PostgreSQL](https://www.postgresql.org/) database on top of which [GraphQL](https://graphql.org/) APIs can then be
created using [Hasura](https://hasura.io/).## Usage
To know how to setup and run Callisto, please refer to
the [docs website](https://docs.bigdipper.live/cosmos-based/parser/overview/).## Testing
If you want to test the code, you can do so by running```shell
$ make test-unit
```**Note**: Requires [Docker](https://docker.com).
This will:
1. Create a Docker container running a PostgreSQL database.
2. Run all the tests using that database as support.## Setup
Remember to run this if you have an empty database:
```
cd hasura
hasura metadata apply --endpoint http://localhost:8080 --admin-secret myadminsecretkey
```