Ping Explorer is a light explorer for Cosmos-based Blockchains. https://ping.pub .
Ping Explorer is designed to explore blockchain data as real as possible, therefore there is no cache, no pre-processing. Ping Explorer does not cache/save blockchain data on its server. Ping Explorer only fetch data from Cosmos full node via LCD/RPC endpoints. We call it "Light Explorer".
Pull your request here, We will add your chains as soon as possible. It is FREE (You must have 10+ independent validators on your chain).
We have two considerations: 1, Trust, In decentralize system, everything controlled by one single team/organization could be risks. So we decided to co-build with the community. 2. We will list hundreds cosmos-based blockchains in the future, it's impossible for our team to run validators or fullnodes for all of those chains.
- Running with yarn
yarn && yarn serve
- Building for web servers, like nginx, apache
yarn && yarn build
cp -r ./dist/* <ROOT_OF_WEB_SERVER>
- Set
enable = true
in./config/app.toml
###############################################################################
### API Configuration ###
###############################################################################
[api]
# Enable defines if the API server should be enabled.
enable = true
# Swagger defines if swagger documentation should automatically be registered.
swagger = false
# Address defines the API server to listen on.
address = "tcp://0.0.0.0:1317"
# MaxOpenConnections defines the number of maximum open connections.
max-open-connections = 1000
- add proxy server and enable CORS. NOTE: You must enable https as well.
server {
server_name juno.api.ping.pub;
listen 443;
location / {
add_header Access-Control-Allow-Origin *;
add_header Access-Control-Max-Age 3600;
add_header Access-Control-Expose-Headers Content-Length;
proxy_pass http://<HOST>:1317;
}
}
- config your blockchain in ./src/chains
Developers: @liangping @dingyiming