All Projects → cosmos → Explorer

cosmos / Explorer

Visual network explorer for the Cosmos Hub and Gaia testnets.

Labels

Cosmos Explorer

Graphical interface to explore validators, fullnodes, and blocks for Cosmos Hub testnets.

Backend Requirement

The Explorer is stateless and relies on a high-throughput Cosmos full node to connect to. The Explorer requires both the Tendermint RPC and the Cosmos LCD REST endpoints to be available publicly through TLS-secured subdomains. The convention is https://rpc.fullnode.com and https://lcd.fullnode.com.

To change the backend, edit the file ./src/store/modules/blockchain.js. On the lines 5 and 6, change the technofractal.com part of the URL to your full node's domain name.

rpc: "https://rpc.technofractal.com",
lcd: "https://lcd.technofractal.com",

And change the line 27 too:

const client = RpcClient("wss://rpc.technofractal.com:443")

WARNING: Every user that visits the Explorer opens two websockets to the default full node. The user will continue to spam your full node with AJAX requests until they close the page. We need a better backend solution for the Explorer! Please help if you can.

Build

# install dependencies
yarn

# serve with hot reload at localhost:8080
yarn serve

# serve in "local dev mode" (only enables basic features like the block explorer)
VUE_APP_LOCAL_DEV=true yarn serve

Deploy

# build for production with minification
yarn build

# then serve the `./dist` folder with the web server of your choice
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].