Cosmos Explorer (Ping.Pub Based)

Quick Install for Prerequisites

  1. Install Node Version Manager

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.4/install.sh | bash
  1. Install the latest version of NodeJS

nvm install node # "node" is an alias for the latest version
  1. Install the latest version of NPM for Node

nvm install-latest-npm # get the latest supported npm version on the current node version
  1. Install Yarn

npm install --global yarn

Install Explorer

// Download the source, use ping.pub repo directly, 
// if using my repo, you'll use the same chain as mine :)

// install git
sudo apt-get install git

// download from ping.pub github (choose one, no need to download both)
git pull https://github.com/ping-pub/explorer.git
// or download from our github (choose one, no need to download both)
git pull https://github.com/pramonoutomo/blockchain-explorer.git

// run directly
yarn --ignore-engines && yarn serve

Auto Restart with pm2 for easy to use

Useful pm2 command

Last updated