https://github.com/celenium-io/astria-indexer
Indexer for shared sequencer network Astria
https://github.com/celenium-io/astria-indexer
api astria astrotrek blockchain explorer indexer
Last synced: 6 months ago
JSON representation
Indexer for shared sequencer network Astria
- Host: GitHub
- URL: https://github.com/celenium-io/astria-indexer
- Owner: celenium-io
- License: mit
- Created: 2024-02-01T13:19:51.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-10-31T14:25:21.000Z (8 months ago)
- Last Synced: 2025-10-31T16:16:42.481Z (8 months ago)
- Topics: api, astria, astrotrek, blockchain, explorer, indexer
- Language: Go
- Homepage: https://astrotrek.io
- Size: 1.38 MB
- Stars: 5
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Astria Indexer
[](https://github.com/celenium-io/astria-indexer/actions?query=branch%main+workflow%3A%22Build%22)
[](https://golang.org/)
[](https://opensource.org/licenses/MIT)
[](https://raw.githack.com/wiki/celenium-io/astria-indexer/coverage.html)
## Standalone
To run indexer clone repository, open directory containing project and run build command. Example:
```bash
git clone git@github.com:celenium-io/astria-indexer.git
cd astria-indexer
make build
```
or by docker compose
```bash
git clone git@github.com:celenium-io/astria-indexer.git
cd astria-indexer
docker-compose up -d --build
```
You have to set environment variables for customizing instances and indexing logic. Example of environment file can be found [here](.env.example).
You can run full stack with GUI:
```bash
export TAG=v1.0.0 # set here needed backend version
export FRONT_TAG=v1.0.0 # set here needed frontend version
docker-compose -f full.docker-compose.yml up -d
```
After that you can find GUI on `http://localhost:3000`.