Skip to content

PashaPlut/tendermint-explorer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

88 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Deploy

# build for production with minification
yarn build

# then serve the `./dist` folder with the web server of your choice

About

Blockchain explorer for Tendermint. Supports JSON transactions and UTF-8

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vue 66.0%
  • JavaScript 19.8%
  • CSS 10.6%
  • HTML 3.2%
  • Dockerfile 0.4%