CodeBlockLabs
CommunityPromo VPS
  • Welcome
  • Getting Started
    • What is Node?
    • Your First Nodes
  • Blockchain Nodes
    • Banano
      • Installation
      • Node Configuration
      • RPC Command
      • Cli Command
      • Other
    • BlockCast
      • Installation
    • BlockX
      • Installation
      • Useful Command
    • Elys
      • Installation
      • Useful Command
    • LayerEdge
      • Installation
      • Automation
    • Lumera
      • Installation
      • Useful Command
      • Snapshot
    • RaiBlocksOne
      • Installation
      • RPC Command
      • Other
    • RaiCoin
      • Installation
      • Node Configuration
      • RPC Command
      • Other
    • Selfchain
      • Installation
      • Useful Command
      • Snapshot
    • Symphony
      • Installation
      • Useful Command
      • Snapshot
      • Oracle
      • Patch
  • Other
    • Automation Scripts
      • Auto Send
    • Blockchain Explorer
    • Go Version Manager (Multi Go)
    • NodeJS
    • Proxmox
      • Proxmox Installation
      • Proxmox FAQ
    • WSL
      • Linux Packages
Powered by GitBook
On this page
  1. Other

Blockchain Explorer

Host your very own blockchain explorer

PreviousAuto SendNextGo Version Manager (Multi Go)

Last updated 1 month ago

Ping.Pub Explorer (Cosmos SDK Based Chain)

Prerequisites install nodeJS and Yarn first, check

Fork the () so you can use only chain you wanted to be on your blockchain explorer.

// clone your ping.pub explorer from your own repository
git clone https://github.com/YourUsername/explorer.git
// go to the folder
cd explorer
// create new screen
screen -S explorer

// Running with yarn
yarn --ignore-engines && yarn serve

// Building for web servers, like nginx, apache
yarn --ignore-engines && yarn build
cp -r ./dist/* <ROOT_OF_WEB_SERVER>

// Running with docker, change the port 8088 to any port you want.
./docker.sh
docker run -d -p 8088:80 ping.pub/dashboard

Update

To Update your explorer, if you made any changes to your own repository.

// open explorer screen
screen -r explorer
// Stop your explorer first, if it's using yarn, simply CTRL+C on the screen
// Pull the update
git pull
// restart the explorer
yarn --ignore-engines && yarn serve
https://documentation.codeblocklabs.com/other/nodejs#install-nodejs
official ping.pub
https://github.com/ping-pub/explorer