Insight is a serverless VeChain explorer. It allows you to explore and search for blocks, transactions and accounts.
- Main net -
https://insight.vecha.in/#/main/txs/{txid}
- Test net -
https://insight.vecha.in/#/test/txs/{txid}
yarn
yarn serve
yarn build
docker build -t insight-app .
docker run -dp 127.0.0.1:8080:80 insight-app
or with docker compose
docker compose up -d --build
Insight support running using a custom solo node address to be provided via .env config
Create a .env
file with the url of the solo node you want to connect
VUE_APP_SOLO_URL=http://localhost:8080
We can provide runtime env variables using -e
docker run ghcr.io/vechain/insight-app:master -e VUE_APP_SOLO_URL=http://localhost:8080
docker build -t insight-app
docker run -e VUE_APP_SOLO_URL=http://localhost:8080
Use the image and pass the env variable in the compose file directly
version: "3.7"
services:
insight:
image: ghcr.io/vechain/insight-app:master
hostname: insight
container_name: insight
environment:
- VUE_APP_SOLO_URL=http://localhost:8669
ports:
- "8080:80"
Everyone is always welcome to contribute on the codebase.